From a45f409dd55e90a5150307d064d5bd6c6f574ee2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fr=C3=B8ystad?= Date: Fri, 23 Apr 2021 19:15:45 +0200 Subject: [PATCH] Adds necessary logic to support attributes. Follows the PHP interprenters lead on disallowing comments starting with #[. --- grammar.js | 31 +- src/grammar.json | 208 +- src/node-types.json | 130 +- src/parser.c | 151381 ++++++++++++++++--------------- test/corpus/declarations.txt | 149 + test/corpus/interpolation.txt | 30 + 6 files changed, 78504 insertions(+), 73425 deletions(-) diff --git a/grammar.js b/grammar.js index ee236d1f..1af370ba 100644 --- a/grammar.js +++ b/grammar.js @@ -244,6 +244,7 @@ module.exports = grammar({ ), class_declaration: $ => prec.right(seq( + optional(field('attributes', $.attribute_list)), optional($.class_modifier), keyword('class'), field('name', $.name), @@ -270,13 +271,20 @@ module.exports = grammar({ ), _member_declaration: $ => choice( - $.const_declaration, + alias($._class_const_declaration, $.const_declaration), $.property_declaration, $.method_declaration, $.use_declaration ), - const_declaration: $ => seq( + const_declaration: $ => $._const_declaration, + + _class_const_declaration: $ => seq( + optional(field('attributes', $.attribute_list)), + $._const_declaration + ), + + _const_declaration: $ => seq( optional($.visibility_modifier), keyword('const'), commaSep1($.const_element), @@ -284,6 +292,7 @@ module.exports = grammar({ ), property_declaration: $ => seq( + optional(field('attributes', $.attribute_list)), repeat1($._modifier), optional(field('type', $._type)), commaSep1($.property_element), @@ -306,6 +315,7 @@ module.exports = grammar({ ), method_declaration: $ => seq( + optional(field('attributes', $.attribute_list)), repeat($._modifier), $._function_definition_header, choice( @@ -363,6 +373,7 @@ module.exports = grammar({ ), function_definition: $ => seq( + optional(field('attributes', $.attribute_list)), $._function_definition_header, field('body', $.compound_statement) ), @@ -393,6 +404,7 @@ module.exports = grammar({ ), simple_parameter: $ => seq( + optional(field('attributes', $.attribute_list)), field('type', optional($._type)), optional('&'), field('name', $.variable_name), @@ -403,6 +415,7 @@ module.exports = grammar({ ), variadic_parameter: $ => seq( + optional(field('attributes', $.attribute_list)), field('type', optional($._type)), optional('&'), '...', @@ -1073,6 +1086,17 @@ module.exports = grammar({ seq('[', commaSep($.array_element_initializer), optional(','), ']') ), + attribute_list: $ => repeat1(seq( + '#[', + commaSep1($.attribute), + ']', + )), + + attribute: $ => seq( + $.qualified_name, + optional(field('parameters', $.arguments)) + ), + string: $ => { const b_prefix = /[bB]/ const single_quote_chars = repeat(/\\'|\\\\|\\?[^'\\]/) @@ -1191,10 +1215,11 @@ module.exports = grammar({ comment: $ => token(choice( seq( - choice('//', '#'), + choice('//', /#[^?\[?\r?\n]/), repeat(/[^?\r?\n]|\?[^>\r\n]/), optional(/\?\r?\n/) ), + '#', seq( '/*', /[^*]*\*+([^/*][^*]*\*+)*/, diff --git a/src/grammar.json b/src/grammar.json index 94bc1340..c49e5345 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -919,6 +919,22 @@ "content": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -1081,8 +1097,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "const_declaration" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_class_const_declaration" + }, + "named": true, + "value": "const_declaration" }, { "type": "SYMBOL", @@ -1099,6 +1120,35 @@ ] }, "const_declaration": { + "type": "SYMBOL", + "name": "_const_declaration" + }, + "_class_const_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_const_declaration" + } + ] + }, + "_const_declaration": { "type": "SEQ", "members": [ { @@ -1156,6 +1206,22 @@ "property_declaration": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "REPEAT1", "content": { @@ -1268,6 +1334,22 @@ "method_declaration": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "REPEAT", "content": { @@ -1545,6 +1627,22 @@ "function_definition": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_function_definition_header" @@ -1776,6 +1874,22 @@ "simple_parameter": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "type", @@ -1842,6 +1956,22 @@ "variadic_parameter": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "type", @@ -5709,6 +5839,72 @@ } ] }, + "attribute_list": { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "attribute" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "attribute": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "qualified_name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "arguments" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, "string": { "type": "TOKEN", "content": { @@ -7120,8 +7316,8 @@ "value": "//" }, { - "type": "STRING", - "value": "#" + "type": "PATTERN", + "value": "#[^?\\[?\\r?\\n]" } ] }, @@ -7146,6 +7342,10 @@ } ] }, + { + "type": "STRING", + "value": "#" + }, { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 33f5e7e9..0137e123 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -573,6 +573,47 @@ } } }, + { + "type": "attribute", + "named": true, + "fields": { + "parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "arguments", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "qualified_name", + "named": true + } + ] + } + }, + { + "type": "attribute_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute", + "named": true + } + ] + } + }, { "type": "augmented_assignment_expression", "named": true, @@ -1101,6 +1142,16 @@ "type": "class_declaration", "named": true, "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, "body": { "multiple": false, "required": true, @@ -1245,7 +1296,18 @@ { "type": "const_declaration", "named": true, - "fields": {}, + "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": true, @@ -1702,6 +1764,16 @@ "type": "function_definition", "named": true, "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, "body": { "multiple": false, "required": true, @@ -2282,6 +2354,16 @@ "type": "method_declaration", "named": true, "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, "body": { "multiple": false, "required": false, @@ -2882,6 +2964,16 @@ "type": "property_declaration", "named": true, "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, "type": { "multiple": false, "required": false, @@ -3260,6 +3352,16 @@ "type": "simple_parameter", "named": true, "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, "default_value": { "multiple": false, "required": false, @@ -3808,6 +3910,16 @@ "type": "variadic_parameter", "named": true, "fields": { + "attributes": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, @@ -3911,6 +4023,10 @@ "type": "!==", "named": false }, + { + "type": "#[", + "named": false + }, { "type": "$", "named": false @@ -4149,11 +4265,11 @@ }, { "type": "boolean", - "named": true + "named": false }, { "type": "boolean", - "named": false + "named": true }, { "type": "break", @@ -4265,11 +4381,11 @@ }, { "type": "float", - "named": true + "named": false }, { "type": "float", - "named": false + "named": true }, { "type": "fn", @@ -4437,11 +4553,11 @@ }, { "type": "string", - "named": false + "named": true }, { "type": "string", - "named": true + "named": false }, { "type": "switch", diff --git a/src/parser.c b/src/parser.c index 97a32ff0..127ee63a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 1957 -#define LARGE_STATE_COUNT 508 -#define SYMBOL_COUNT 323 +#define STATE_COUNT 2080 +#define LARGE_STATE_COUNT 526 +#define SYMBOL_COUNT 330 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 160 +#define TOKEN_COUNT 161 #define EXTERNAL_TOKEN_COUNT 3 -#define FIELD_COUNT 18 +#define FIELD_COUNT 19 #define MAX_ALIAS_SEQUENCE_LENGTH 12 -#define PRODUCTION_ID_COUNT 78 +#define PRODUCTION_ID_COUNT 102 enum { sym_name = 1, @@ -138,208 +138,215 @@ enum { anon_sym_RBRACK = 119, anon_sym_self = 120, anon_sym_parent = 121, - sym_string = 122, - sym_boolean = 123, - sym_null = 124, - anon_sym_DOLLAR = 125, - anon_sym_yield = 126, - anon_sym_from = 127, - aux_sym_binary_expression_token1 = 128, - anon_sym_QMARK_QMARK = 129, - aux_sym_binary_expression_token2 = 130, - aux_sym_binary_expression_token3 = 131, - aux_sym_binary_expression_token4 = 132, - anon_sym_PIPE_PIPE = 133, - anon_sym_AMP_AMP = 134, - anon_sym_CARET = 135, - anon_sym_EQ_EQ = 136, - anon_sym_BANG_EQ = 137, - anon_sym_LT_GT = 138, - anon_sym_EQ_EQ_EQ = 139, - anon_sym_BANG_EQ_EQ = 140, - anon_sym_LT = 141, - anon_sym_GT = 142, - anon_sym_LT_EQ = 143, - anon_sym_GT_EQ = 144, - anon_sym_LT_EQ_GT = 145, - anon_sym_LT_LT = 146, - anon_sym_GT_GT = 147, - anon_sym_DOT = 148, - anon_sym_STAR = 149, - anon_sym_SLASH = 150, - anon_sym_PERCENT = 151, - aux_sym_include_expression_token1 = 152, - aux_sym_include_once_expression_token1 = 153, - aux_sym_require_expression_token1 = 154, - aux_sym_require_once_expression_token1 = 155, - sym_comment = 156, - sym__automatic_semicolon = 157, - sym_heredoc = 158, - sym__eof = 159, - sym_program = 160, - sym_text_interpolation = 161, - sym_text = 162, - sym_empty_statement = 163, - sym_function_static_declaration = 164, - sym_static_variable_declaration = 165, - sym_global_declaration = 166, - sym_namespace_definition = 167, - sym_namespace_use_declaration = 168, - sym_namespace_use_clause = 169, - sym_qualified_name = 170, - sym_namespace_name_as_prefix = 171, - sym_namespace_name = 172, - sym_namespace_aliasing_clause = 173, - sym_namespace_use_group = 174, - sym_namespace_use_group_clause = 175, - sym_trait_declaration = 176, - sym_interface_declaration = 177, - sym_base_clause = 178, - sym_class_declaration = 179, - sym_declaration_list = 180, - sym_class_modifier = 181, - sym_class_interface_clause = 182, - sym__member_declaration = 183, - sym_const_declaration = 184, - sym_property_declaration = 185, - sym__modifier = 186, - sym_property_element = 187, - sym_property_initializer = 188, - sym_method_declaration = 189, - sym_static_modifier = 190, - sym_use_declaration = 191, - sym_use_list = 192, - sym_use_instead_of_clause = 193, - sym_use_as_clause = 194, - sym_visibility_modifier = 195, - sym_function_definition = 196, - sym__function_definition_header = 197, - sym_arrow_function = 198, - sym_formal_parameters = 199, - sym_simple_parameter = 200, - sym_variadic_parameter = 201, - sym__type = 202, - sym__types = 203, - sym_optional_type = 204, - sym_union_type = 205, - sym_primitive_type = 206, - sym_cast_type = 207, - sym__return_type = 208, - sym_const_element = 209, - sym_echo_statement = 210, - sym_unset_statement = 211, - sym_declare_statement = 212, - sym_declare_directive = 213, - sym_try_statement = 214, - sym_catch_clause = 215, - sym_type_list = 216, - sym_finally_clause = 217, - sym_goto_statement = 218, - sym_continue_statement = 219, - sym_break_statement = 220, - sym_return_statement = 221, - sym_throw_expression = 222, - sym_while_statement = 223, - sym_do_statement = 224, - sym_for_statement = 225, - sym__expressions = 226, - sym_sequence_expression = 227, - sym_foreach_statement = 228, - sym_foreach_pair = 229, - sym_if_statement = 230, - sym_colon_block = 231, - sym_else_if_clause = 232, - sym_else_clause = 233, - sym_else_if_clause_2 = 234, - sym_else_clause_2 = 235, - sym_match_expression = 236, - sym_match_block = 237, - sym_match_condition_list = 238, - sym_match_conditional_expression = 239, - sym_match_default_expression = 240, - sym_switch_statement = 241, - sym_switch_block = 242, - sym_case_statement = 243, - sym_default_statement = 244, - sym_compound_statement = 245, - sym_named_label_statement = 246, - sym_expression_statement = 247, - sym__expression = 248, - sym__unary_expression = 249, - sym_unary_op_expression = 250, - sym_exponentiation_expression = 251, - sym_clone_expression = 252, - sym__primary_expression = 253, - sym_parenthesized_expression = 254, - sym_class_constant_access_expression = 255, - sym_print_intrinsic = 256, - sym_anonymous_function_creation_expression = 257, - sym_anonymous_function_use_clause = 258, - sym_object_creation_expression = 259, - sym_update_expression = 260, - sym_cast_expression = 261, - sym_cast_variable = 262, - sym_assignment_expression = 263, - sym_conditional_expression = 264, - sym_augmented_assignment_expression = 265, - sym_member_access_expression = 266, - sym_nullsafe_member_access_expression = 267, - sym_scoped_property_access_expression = 268, - sym_list_literal = 269, - sym__list_destructing = 270, - sym__array_destructing = 271, - sym_function_call_expression = 272, - sym_scoped_call_expression = 273, - sym__scope_resolution_qualifier = 274, - sym_relative_scope = 275, - sym_arguments = 276, - sym_argument = 277, - sym_member_call_expression = 278, - sym_nullsafe_member_call_expression = 279, - sym_variadic_unpacking = 280, - sym_subscript_expression = 281, - sym__dereferencable_expression = 282, - sym_array_creation_expression = 283, - sym__string = 284, - sym_dynamic_variable_name = 285, - sym_variable_name = 286, - sym_yield_expression = 287, - sym_array_element_initializer = 288, - sym_binary_expression = 289, - sym_include_expression = 290, - sym_include_once_expression = 291, - sym_require_expression = 292, - sym_require_once_expression = 293, - sym__reserved_identifier = 294, - aux_sym_program_repeat1 = 295, - aux_sym_text_repeat1 = 296, - aux_sym_function_static_declaration_repeat1 = 297, - aux_sym_global_declaration_repeat1 = 298, - aux_sym_namespace_use_declaration_repeat1 = 299, - aux_sym_namespace_name_repeat1 = 300, - aux_sym_namespace_use_group_repeat1 = 301, - aux_sym_base_clause_repeat1 = 302, - aux_sym_declaration_list_repeat1 = 303, - aux_sym_const_declaration_repeat1 = 304, - aux_sym_property_declaration_repeat1 = 305, - aux_sym_property_declaration_repeat2 = 306, - aux_sym_use_list_repeat1 = 307, - aux_sym_formal_parameters_repeat1 = 308, - aux_sym_union_type_repeat1 = 309, - aux_sym_unset_statement_repeat1 = 310, - aux_sym_try_statement_repeat1 = 311, - aux_sym_type_list_repeat1 = 312, - aux_sym_if_statement_repeat1 = 313, - aux_sym_if_statement_repeat2 = 314, - aux_sym_match_block_repeat1 = 315, - aux_sym_match_condition_list_repeat1 = 316, - aux_sym_switch_block_repeat1 = 317, - aux_sym_anonymous_function_use_clause_repeat1 = 318, - aux_sym__list_destructing_repeat1 = 319, - aux_sym__array_destructing_repeat1 = 320, - aux_sym_arguments_repeat1 = 321, - aux_sym_array_creation_expression_repeat1 = 322, - alias_sym_type_name = 323, + anon_sym_POUND_LBRACK = 122, + sym_string = 123, + sym_boolean = 124, + sym_null = 125, + anon_sym_DOLLAR = 126, + anon_sym_yield = 127, + anon_sym_from = 128, + aux_sym_binary_expression_token1 = 129, + anon_sym_QMARK_QMARK = 130, + aux_sym_binary_expression_token2 = 131, + aux_sym_binary_expression_token3 = 132, + aux_sym_binary_expression_token4 = 133, + anon_sym_PIPE_PIPE = 134, + anon_sym_AMP_AMP = 135, + anon_sym_CARET = 136, + anon_sym_EQ_EQ = 137, + anon_sym_BANG_EQ = 138, + anon_sym_LT_GT = 139, + anon_sym_EQ_EQ_EQ = 140, + anon_sym_BANG_EQ_EQ = 141, + anon_sym_LT = 142, + anon_sym_GT = 143, + anon_sym_LT_EQ = 144, + anon_sym_GT_EQ = 145, + anon_sym_LT_EQ_GT = 146, + anon_sym_LT_LT = 147, + anon_sym_GT_GT = 148, + anon_sym_DOT = 149, + anon_sym_STAR = 150, + anon_sym_SLASH = 151, + anon_sym_PERCENT = 152, + aux_sym_include_expression_token1 = 153, + aux_sym_include_once_expression_token1 = 154, + aux_sym_require_expression_token1 = 155, + aux_sym_require_once_expression_token1 = 156, + sym_comment = 157, + sym__automatic_semicolon = 158, + sym_heredoc = 159, + sym__eof = 160, + sym_program = 161, + sym_text_interpolation = 162, + sym_text = 163, + sym_empty_statement = 164, + sym_function_static_declaration = 165, + sym_static_variable_declaration = 166, + sym_global_declaration = 167, + sym_namespace_definition = 168, + sym_namespace_use_declaration = 169, + sym_namespace_use_clause = 170, + sym_qualified_name = 171, + sym_namespace_name_as_prefix = 172, + sym_namespace_name = 173, + sym_namespace_aliasing_clause = 174, + sym_namespace_use_group = 175, + sym_namespace_use_group_clause = 176, + sym_trait_declaration = 177, + sym_interface_declaration = 178, + sym_base_clause = 179, + sym_class_declaration = 180, + sym_declaration_list = 181, + sym_class_modifier = 182, + sym_class_interface_clause = 183, + sym__member_declaration = 184, + sym_const_declaration = 185, + sym__class_const_declaration = 186, + sym__const_declaration = 187, + sym_property_declaration = 188, + sym__modifier = 189, + sym_property_element = 190, + sym_property_initializer = 191, + sym_method_declaration = 192, + sym_static_modifier = 193, + sym_use_declaration = 194, + sym_use_list = 195, + sym_use_instead_of_clause = 196, + sym_use_as_clause = 197, + sym_visibility_modifier = 198, + sym_function_definition = 199, + sym__function_definition_header = 200, + sym_arrow_function = 201, + sym_formal_parameters = 202, + sym_simple_parameter = 203, + sym_variadic_parameter = 204, + sym__type = 205, + sym__types = 206, + sym_optional_type = 207, + sym_union_type = 208, + sym_primitive_type = 209, + sym_cast_type = 210, + sym__return_type = 211, + sym_const_element = 212, + sym_echo_statement = 213, + sym_unset_statement = 214, + sym_declare_statement = 215, + sym_declare_directive = 216, + sym_try_statement = 217, + sym_catch_clause = 218, + sym_type_list = 219, + sym_finally_clause = 220, + sym_goto_statement = 221, + sym_continue_statement = 222, + sym_break_statement = 223, + sym_return_statement = 224, + sym_throw_expression = 225, + sym_while_statement = 226, + sym_do_statement = 227, + sym_for_statement = 228, + sym__expressions = 229, + sym_sequence_expression = 230, + sym_foreach_statement = 231, + sym_foreach_pair = 232, + sym_if_statement = 233, + sym_colon_block = 234, + sym_else_if_clause = 235, + sym_else_clause = 236, + sym_else_if_clause_2 = 237, + sym_else_clause_2 = 238, + sym_match_expression = 239, + sym_match_block = 240, + sym_match_condition_list = 241, + sym_match_conditional_expression = 242, + sym_match_default_expression = 243, + sym_switch_statement = 244, + sym_switch_block = 245, + sym_case_statement = 246, + sym_default_statement = 247, + sym_compound_statement = 248, + sym_named_label_statement = 249, + sym_expression_statement = 250, + sym__expression = 251, + sym__unary_expression = 252, + sym_unary_op_expression = 253, + sym_exponentiation_expression = 254, + sym_clone_expression = 255, + sym__primary_expression = 256, + sym_parenthesized_expression = 257, + sym_class_constant_access_expression = 258, + sym_print_intrinsic = 259, + sym_anonymous_function_creation_expression = 260, + sym_anonymous_function_use_clause = 261, + sym_object_creation_expression = 262, + sym_update_expression = 263, + sym_cast_expression = 264, + sym_cast_variable = 265, + sym_assignment_expression = 266, + sym_conditional_expression = 267, + sym_augmented_assignment_expression = 268, + sym_member_access_expression = 269, + sym_nullsafe_member_access_expression = 270, + sym_scoped_property_access_expression = 271, + sym_list_literal = 272, + sym__list_destructing = 273, + sym__array_destructing = 274, + sym_function_call_expression = 275, + sym_scoped_call_expression = 276, + sym__scope_resolution_qualifier = 277, + sym_relative_scope = 278, + sym_arguments = 279, + sym_argument = 280, + sym_member_call_expression = 281, + sym_nullsafe_member_call_expression = 282, + sym_variadic_unpacking = 283, + sym_subscript_expression = 284, + sym__dereferencable_expression = 285, + sym_array_creation_expression = 286, + sym_attribute_list = 287, + sym_attribute = 288, + sym__string = 289, + sym_dynamic_variable_name = 290, + sym_variable_name = 291, + sym_yield_expression = 292, + sym_array_element_initializer = 293, + sym_binary_expression = 294, + sym_include_expression = 295, + sym_include_once_expression = 296, + sym_require_expression = 297, + sym_require_once_expression = 298, + sym__reserved_identifier = 299, + aux_sym_program_repeat1 = 300, + aux_sym_text_repeat1 = 301, + aux_sym_function_static_declaration_repeat1 = 302, + aux_sym_global_declaration_repeat1 = 303, + aux_sym_namespace_use_declaration_repeat1 = 304, + aux_sym_namespace_name_repeat1 = 305, + aux_sym_namespace_use_group_repeat1 = 306, + aux_sym_base_clause_repeat1 = 307, + aux_sym_declaration_list_repeat1 = 308, + aux_sym__const_declaration_repeat1 = 309, + aux_sym_property_declaration_repeat1 = 310, + aux_sym_property_declaration_repeat2 = 311, + aux_sym_use_list_repeat1 = 312, + aux_sym_formal_parameters_repeat1 = 313, + aux_sym_union_type_repeat1 = 314, + aux_sym_unset_statement_repeat1 = 315, + aux_sym_try_statement_repeat1 = 316, + aux_sym_type_list_repeat1 = 317, + aux_sym_if_statement_repeat1 = 318, + aux_sym_if_statement_repeat2 = 319, + aux_sym_match_block_repeat1 = 320, + aux_sym_match_condition_list_repeat1 = 321, + aux_sym_switch_block_repeat1 = 322, + aux_sym_anonymous_function_use_clause_repeat1 = 323, + aux_sym__list_destructing_repeat1 = 324, + aux_sym__array_destructing_repeat1 = 325, + aux_sym_arguments_repeat1 = 326, + aux_sym_array_creation_expression_repeat1 = 327, + aux_sym_attribute_list_repeat1 = 328, + aux_sym_attribute_list_repeat2 = 329, + alias_sym_type_name = 330, }; static const char *ts_symbol_names[] = { @@ -465,6 +472,7 @@ static const char *ts_symbol_names[] = { [anon_sym_RBRACK] = "]", [anon_sym_self] = "self", [anon_sym_parent] = "parent", + [anon_sym_POUND_LBRACK] = "#[", [sym_string] = "string", [sym_boolean] = "boolean", [sym_null] = "null", @@ -528,6 +536,8 @@ static const char *ts_symbol_names[] = { [sym_class_interface_clause] = "class_interface_clause", [sym__member_declaration] = "_member_declaration", [sym_const_declaration] = "const_declaration", + [sym__class_const_declaration] = "const_declaration", + [sym__const_declaration] = "_const_declaration", [sym_property_declaration] = "property_declaration", [sym__modifier] = "_modifier", [sym_property_element] = "property_element", @@ -627,6 +637,8 @@ static const char *ts_symbol_names[] = { [sym_subscript_expression] = "subscript_expression", [sym__dereferencable_expression] = "_dereferencable_expression", [sym_array_creation_expression] = "array_creation_expression", + [sym_attribute_list] = "attribute_list", + [sym_attribute] = "attribute", [sym__string] = "_string", [sym_dynamic_variable_name] = "dynamic_variable_name", [sym_variable_name] = "variable_name", @@ -647,7 +659,7 @@ static const char *ts_symbol_names[] = { [aux_sym_namespace_use_group_repeat1] = "namespace_use_group_repeat1", [aux_sym_base_clause_repeat1] = "base_clause_repeat1", [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", - [aux_sym_const_declaration_repeat1] = "const_declaration_repeat1", + [aux_sym__const_declaration_repeat1] = "_const_declaration_repeat1", [aux_sym_property_declaration_repeat1] = "property_declaration_repeat1", [aux_sym_property_declaration_repeat2] = "property_declaration_repeat2", [aux_sym_use_list_repeat1] = "use_list_repeat1", @@ -666,6 +678,8 @@ static const char *ts_symbol_names[] = { [aux_sym__array_destructing_repeat1] = "_array_destructing_repeat1", [aux_sym_arguments_repeat1] = "arguments_repeat1", [aux_sym_array_creation_expression_repeat1] = "array_creation_expression_repeat1", + [aux_sym_attribute_list_repeat1] = "attribute_list_repeat1", + [aux_sym_attribute_list_repeat2] = "attribute_list_repeat2", [alias_sym_type_name] = "type_name", }; @@ -792,6 +806,7 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_self] = anon_sym_self, [anon_sym_parent] = anon_sym_parent, + [anon_sym_POUND_LBRACK] = anon_sym_POUND_LBRACK, [sym_string] = sym_string, [sym_boolean] = sym_boolean, [sym_null] = sym_null, @@ -855,6 +870,8 @@ static TSSymbol ts_symbol_map[] = { [sym_class_interface_clause] = sym_class_interface_clause, [sym__member_declaration] = sym__member_declaration, [sym_const_declaration] = sym_const_declaration, + [sym__class_const_declaration] = sym_const_declaration, + [sym__const_declaration] = sym__const_declaration, [sym_property_declaration] = sym_property_declaration, [sym__modifier] = sym__modifier, [sym_property_element] = sym_property_element, @@ -954,6 +971,8 @@ static TSSymbol ts_symbol_map[] = { [sym_subscript_expression] = sym_subscript_expression, [sym__dereferencable_expression] = sym__dereferencable_expression, [sym_array_creation_expression] = sym_array_creation_expression, + [sym_attribute_list] = sym_attribute_list, + [sym_attribute] = sym_attribute, [sym__string] = sym__string, [sym_dynamic_variable_name] = sym_dynamic_variable_name, [sym_variable_name] = sym_variable_name, @@ -974,7 +993,7 @@ static TSSymbol ts_symbol_map[] = { [aux_sym_namespace_use_group_repeat1] = aux_sym_namespace_use_group_repeat1, [aux_sym_base_clause_repeat1] = aux_sym_base_clause_repeat1, [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, - [aux_sym_const_declaration_repeat1] = aux_sym_const_declaration_repeat1, + [aux_sym__const_declaration_repeat1] = aux_sym__const_declaration_repeat1, [aux_sym_property_declaration_repeat1] = aux_sym_property_declaration_repeat1, [aux_sym_property_declaration_repeat2] = aux_sym_property_declaration_repeat2, [aux_sym_use_list_repeat1] = aux_sym_use_list_repeat1, @@ -993,6 +1012,8 @@ static TSSymbol ts_symbol_map[] = { [aux_sym__array_destructing_repeat1] = aux_sym__array_destructing_repeat1, [aux_sym_arguments_repeat1] = aux_sym_arguments_repeat1, [aux_sym_array_creation_expression_repeat1] = aux_sym_array_creation_expression_repeat1, + [aux_sym_attribute_list_repeat1] = aux_sym_attribute_list_repeat1, + [aux_sym_attribute_list_repeat2] = aux_sym_attribute_list_repeat2, [alias_sym_type_name] = alias_sym_type_name, }; @@ -1485,6 +1506,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_POUND_LBRACK] = { + .visible = true, + .named = false, + }, [sym_string] = { .visible = true, .named = true, @@ -1737,6 +1762,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__class_const_declaration] = { + .visible = true, + .named = true, + }, + [sym__const_declaration] = { + .visible = false, + .named = true, + }, [sym_property_declaration] = { .visible = true, .named = true, @@ -2136,6 +2169,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_attribute_list] = { + .visible = true, + .named = true, + }, + [sym_attribute] = { + .visible = true, + .named = true, + }, [sym__string] = { .visible = false, .named = true, @@ -2216,7 +2257,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_const_declaration_repeat1] = { + [aux_sym__const_declaration_repeat1] = { .visible = false, .named = false, }, @@ -2292,6 +2333,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_attribute_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_list_repeat2] = { + .visible = false, + .named = false, + }, [alias_sym_type_name] = { .visible = true, .named = true, @@ -2301,28 +2350,30 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { enum { field_alternative = 1, field_arguments = 2, - field_body = 3, - field_condition = 4, - field_conditional_expressions = 5, - field_default_value = 6, - field_function = 7, - field_left = 8, - field_name = 9, - field_object = 10, - field_operator = 11, - field_parameters = 12, - field_return_expression = 13, - field_return_type = 14, - field_right = 15, - field_scope = 16, - field_type = 17, - field_value = 18, + field_attributes = 3, + field_body = 4, + field_condition = 5, + field_conditional_expressions = 6, + 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, }; static const char *ts_field_names[] = { [0] = NULL, [field_alternative] = "alternative", [field_arguments] = "arguments", + [field_attributes] = "attributes", [field_body] = "body", [field_condition] = "condition", [field_conditional_expressions] = "conditional_expressions", @@ -2351,68 +2402,92 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [8] = {.index = 11, .length = 2}, [9] = {.index = 13, .length = 2}, [10] = {.index = 15, .length = 2}, - [12] = {.index = 17, .length = 3}, - [13] = {.index = 20, .length = 2}, - [14] = {.index = 22, .length = 2}, - [15] = {.index = 24, .length = 2}, - [16] = {.index = 26, .length = 2}, - [17] = {.index = 28, .length = 2}, - [18] = {.index = 30, .length = 2}, - [20] = {.index = 32, .length = 2}, - [21] = {.index = 34, .length = 3}, - [22] = {.index = 37, .length = 1}, - [23] = {.index = 38, .length = 3}, - [24] = {.index = 41, .length = 2}, - [25] = {.index = 43, .length = 2}, - [26] = {.index = 45, .length = 2}, - [27] = {.index = 47, .length = 1}, - [28] = {.index = 48, .length = 3}, - [29] = {.index = 51, .length = 3}, - [31] = {.index = 54, .length = 2}, - [32] = {.index = 56, .length = 2}, - [33] = {.index = 58, .length = 2}, - [34] = {.index = 60, .length = 3}, - [35] = {.index = 63, .length = 3}, - [36] = {.index = 66, .length = 2}, - [37] = {.index = 68, .length = 3}, - [38] = {.index = 71, .length = 2}, - [39] = {.index = 73, .length = 3}, - [40] = {.index = 76, .length = 1}, - [41] = {.index = 77, .length = 2}, - [42] = {.index = 79, .length = 2}, - [43] = {.index = 81, .length = 3}, - [44] = {.index = 84, .length = 3}, - [45] = {.index = 87, .length = 2}, - [46] = {.index = 89, .length = 3}, - [47] = {.index = 92, .length = 2}, - [48] = {.index = 94, .length = 4}, - [49] = {.index = 98, .length = 2}, - [51] = {.index = 100, .length = 2}, - [52] = {.index = 102, .length = 3}, + [12] = {.index = 17, .length = 1}, + [13] = {.index = 18, .length = 3}, + [14] = {.index = 21, .length = 2}, + [15] = {.index = 23, .length = 2}, + [16] = {.index = 25, .length = 2}, + [17] = {.index = 27, .length = 5}, + [18] = {.index = 32, .length = 2}, + [19] = {.index = 34, .length = 2}, + [20] = {.index = 36, .length = 2}, + [22] = {.index = 38, .length = 2}, + [23] = {.index = 40, .length = 2}, + [24] = {.index = 42, .length = 3}, + [25] = {.index = 45, .length = 1}, + [26] = {.index = 46, .length = 3}, + [27] = {.index = 49, .length = 2}, + [28] = {.index = 51, .length = 1}, + [29] = {.index = 52, .length = 2}, + [30] = {.index = 54, .length = 2}, + [31] = {.index = 56, .length = 1}, + [32] = {.index = 57, .length = 3}, + [33] = {.index = 60, .length = 3}, + [35] = {.index = 63, .length = 2}, + [36] = {.index = 65, .length = 2}, + [37] = {.index = 67, .length = 2}, + [38] = {.index = 69, .length = 3}, + [39] = {.index = 72, .length = 3}, + [40] = {.index = 75, .length = 3}, + [41] = {.index = 78, .length = 2}, + [42] = {.index = 80, .length = 3}, + [43] = {.index = 83, .length = 2}, + [44] = {.index = 85, .length = 3}, + [45] = {.index = 88, .length = 1}, + [46] = {.index = 89, .length = 2}, + [47] = {.index = 91, .length = 2}, + [48] = {.index = 93, .length = 3}, + [49] = {.index = 96, .length = 2}, + [50] = {.index = 98, .length = 3}, + [51] = {.index = 101, .length = 3}, + [52] = {.index = 104, .length = 1}, [53] = {.index = 105, .length = 2}, [54] = {.index = 107, .length = 3}, [55] = {.index = 110, .length = 2}, - [56] = {.index = 112, .length = 3}, - [57] = {.index = 115, .length = 2}, - [58] = {.index = 117, .length = 2}, - [59] = {.index = 119, .length = 3}, - [60] = {.index = 122, .length = 3}, - [61] = {.index = 125, .length = 4}, - [62] = {.index = 129, .length = 3}, - [63] = {.index = 132, .length = 1}, - [64] = {.index = 133, .length = 2}, - [65] = {.index = 135, .length = 1}, - [67] = {.index = 136, .length = 2}, - [68] = {.index = 138, .length = 3}, - [69] = {.index = 141, .length = 3}, - [70] = {.index = 144, .length = 3}, - [71] = {.index = 147, .length = 3}, - [72] = {.index = 150, .length = 1}, - [73] = {.index = 151, .length = 2}, - [74] = {.index = 153, .length = 1}, - [75] = {.index = 154, .length = 3}, - [76] = {.index = 157, .length = 3}, - [77] = {.index = 160, .length = 1}, + [56] = {.index = 112, .length = 4}, + [57] = {.index = 116, .length = 2}, + [59] = {.index = 118, .length = 2}, + [60] = {.index = 120, .length = 3}, + [61] = {.index = 123, .length = 2}, + [62] = {.index = 125, .length = 3}, + [63] = {.index = 128, .length = 3}, + [64] = {.index = 131, .length = 3}, + [65] = {.index = 134, .length = 2}, + [66] = {.index = 136, .length = 3}, + [67] = {.index = 139, .length = 2}, + [68] = {.index = 141, .length = 2}, + [69] = {.index = 143, .length = 3}, + [70] = {.index = 146, .length = 2}, + [71] = {.index = 148, .length = 3}, + [72] = {.index = 151, .length = 3}, + [73] = {.index = 154, .length = 4}, + [74] = {.index = 158, .length = 3}, + [75] = {.index = 161, .length = 4}, + [76] = {.index = 165, .length = 3}, + [77] = {.index = 168, .length = 1}, + [78] = {.index = 169, .length = 2}, + [79] = {.index = 171, .length = 1}, + [81] = {.index = 172, .length = 2}, + [82] = {.index = 174, .length = 3}, + [83] = {.index = 177, .length = 3}, + [84] = {.index = 180, .length = 3}, + [85] = {.index = 183, .length = 3}, + [86] = {.index = 186, .length = 3}, + [87] = {.index = 189, .length = 3}, + [88] = {.index = 192, .length = 3}, + [89] = {.index = 195, .length = 3}, + [90] = {.index = 198, .length = 4}, + [91] = {.index = 202, .length = 4}, + [92] = {.index = 206, .length = 5}, + [93] = {.index = 211, .length = 1}, + [94] = {.index = 212, .length = 2}, + [95] = {.index = 214, .length = 1}, + [96] = {.index = 215, .length = 3}, + [97] = {.index = 218, .length = 3}, + [98] = {.index = 221, .length = 4}, + [99] = {.index = 225, .length = 2}, + [100] = {.index = 227, .length = 3}, + [101] = {.index = 230, .length = 1}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2443,210 +2518,304 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 2}, {field_condition, 1}, [17] = + {field_parameters, 1}, + [18] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [20] = + [21] = {field_left, 0}, {field_right, 2}, - [22] = + [23] = {field_name, 2}, {field_scope, 0}, - [24] = + [25] = {field_name, 2}, {field_object, 0}, - [26] = + [27] = + {field_attributes, 0}, + {field_body, 2}, + {field_name, 1, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + [32] = {field_body, 3}, {field_parameters, 2}, - [28] = + [34] = {field_name, 0}, {field_value, 2}, - [30] = + [36] = {field_name, 2}, {field_parameters, 3}, - [32] = + [38] = {field_name, 1}, {field_type, 0}, - [34] = + [40] = + {field_attributes, 0}, + {field_name, 1}, + [42] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [37] = + [45] = {field_return_type, 1}, - [38] = + [46] = {field_body, 3}, {field_parameters, 1}, {field_return_type, 2, .inherited = true}, - [41] = + [49] = {field_body, 3}, {field_parameters, 1}, - [43] = + [51] = + {field_attributes, 0, .inherited = true}, + [52] = {field_body, 3}, {field_name, 1}, - [45] = + [54] = {field_type, 1}, {field_value, 3}, - [47] = + [56] = {field_alternative, 0}, - [48] = + [57] = {field_alternative, 3}, {field_body, 2}, {field_condition, 1}, - [51] = + [60] = {field_alternative, 3, .inherited = true}, {field_body, 2}, {field_condition, 1}, - [54] = + [63] = {field_body, 3}, {field_name, 2}, - [56] = + [65] = {field_alternative, 3}, {field_condition, 0}, - [58] = + [67] = {field_left, 0}, {field_right, 3}, - [60] = + [69] = {field_arguments, 3}, {field_name, 2}, {field_scope, 0}, - [63] = + [72] = {field_arguments, 3}, {field_name, 2}, {field_object, 0}, - [66] = + [75] = + {field_attributes, 0}, + {field_body, 3}, + {field_name, 2}, + [78] = {field_body, 4}, {field_parameters, 3}, - [68] = + [80] = {field_body, 4}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [71] = + [83] = {field_body, 4}, {field_parameters, 2}, - [73] = + [85] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, - [76] = + [88] = {field_name, 2}, - [77] = + [89] = {field_name, 2}, {field_type, 0}, - [79] = + [91] = + {field_attributes, 0}, + {field_name, 2}, + [93] = + {field_attributes, 0}, + {field_name, 2}, + {field_type, 1}, + [96] = {field_default_value, 2}, {field_name, 0}, - [81] = + [98] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3, .inherited = true}, - [84] = + [101] = {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, - [87] = + [104] = + {field_attributes, 0}, + [105] = {field_body, 4}, {field_name, 1}, - [89] = + [107] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 2, .inherited = true}, - [92] = + [110] = {field_body, 1}, {field_condition, 3}, - [94] = + [112] = {field_alternative, 3, .inherited = true}, {field_alternative, 4}, {field_body, 2}, {field_condition, 1}, - [98] = + [116] = {field_alternative, 0, .inherited = true}, {field_alternative, 1, .inherited = true}, - [100] = + [118] = {field_body, 4}, {field_name, 2}, - [102] = + [120] = {field_alternative, 4}, {field_body, 2}, {field_condition, 0}, - [105] = + [123] = {field_name, 3}, {field_object, 0}, - [107] = + [125] = + {field_attributes, 0}, + {field_body, 4}, + {field_name, 2}, + [128] = + {field_attributes, 0}, + {field_body, 4}, + {field_name, 3}, + [131] = {field_body, 5}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, - [110] = + [134] = {field_body, 5}, {field_parameters, 3}, - [112] = + [136] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4, .inherited = true}, - [115] = + [139] = {field_default_value, 3}, {field_name, 1}, - [117] = + [141] = {field_name, 3}, {field_type, 0}, - [119] = + [143] = {field_default_value, 3}, {field_name, 1}, {field_type, 0}, - [122] = + [146] = + {field_attributes, 0}, + {field_name, 3}, + [148] = + {field_attributes, 0}, + {field_name, 3}, + {field_type, 1}, + [151] = + {field_attributes, 0}, + {field_default_value, 3}, + {field_name, 1}, + [154] = + {field_attributes, 0}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [125] = + [158] = + {field_name, 1, .inherited = true}, + {field_parameters, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + [161] = {field_body, 2}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, - [129] = + [165] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 3, .inherited = true}, - [132] = + [168] = {field_return_expression, 2}, - [133] = + [169] = {field_conditional_expressions, 0}, {field_return_expression, 2}, - [135] = + [171] = {field_value, 1}, - [136] = + [172] = {field_body, 5}, {field_name, 2}, - [138] = + [174] = {field_arguments, 5}, {field_name, 3}, {field_scope, 0}, - [141] = + [177] = {field_arguments, 5}, {field_name, 3}, {field_object, 0}, - [144] = + [180] = + {field_attributes, 0}, + {field_body, 5}, + {field_name, 2}, + [183] = + {field_attributes, 0}, + {field_body, 5}, + {field_name, 3}, + [186] = {field_body, 6}, {field_parameters, 3}, {field_return_type, 5, .inherited = true}, - [147] = + [189] = {field_default_value, 4}, {field_name, 2}, {field_type, 0}, - [150] = + [192] = + {field_attributes, 0}, + {field_default_value, 4}, + {field_name, 2}, + [195] = + {field_attributes, 0}, + {field_name, 4}, {field_type, 1}, - [151] = + [198] = + {field_attributes, 0}, + {field_default_value, 4}, + {field_name, 2}, + {field_type, 1}, + [202] = + {field_attributes, 0}, + {field_name, 2, .inherited = true}, + {field_parameters, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + [206] = + {field_attributes, 0}, + {field_body, 3}, + {field_name, 2, .inherited = true}, + {field_parameters, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + [211] = + {field_type, 1}, + [212] = {field_body, 4}, {field_type, 2}, - [153] = + [214] = {field_body, 6}, - [154] = + [215] = {field_body, 6}, {field_parameters, 3}, {field_return_type, 4, .inherited = true}, - [157] = + [218] = + {field_attributes, 0}, + {field_body, 6}, + {field_name, 3}, + [221] = + {field_attributes, 0}, + {field_default_value, 5}, + {field_name, 3}, + {field_type, 1}, + [225] = + {field_attributes, 0}, + {field_type, 2}, + [227] = {field_body, 5}, {field_name, 3}, {field_type, 2}, - [160] = + [230] = {field_body, 7}, }; @@ -2658,16 +2827,16 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [11] = { [1] = sym_list_literal, }, - [19] = { + [21] = { [1] = alias_sym_type_name, }, - [30] = { + [34] = { [2] = sym_list_literal, }, - [50] = { + [58] = { [3] = sym_list_literal, }, - [66] = { + [80] = { [4] = sym_list_literal, }, }; @@ -2690,50 +2859,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(88); - if (lookahead == '!') ADVANCE(143); - if (lookahead == '"') ADVANCE(25); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(172); - if (lookahead == '%') ADVANCE(205); - if (lookahead == '&') ADVANCE(112); + if (eof) ADVANCE(89); + if (lookahead == '!') ADVANCE(145); + if (lookahead == '"') ADVANCE(24); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(175); + if (lookahead == '%') ADVANCE(208); + if (lookahead == '&') ADVANCE(114); if (lookahead == '\'') ADVANCE(28); - if (lookahead == '(') ADVANCE(114); - if (lookahead == ')') ADVANCE(115); - if (lookahead == '*') ADVANCE(200); - if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(140); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(203); - if (lookahead == '0') ADVANCE(129); - if (lookahead == ':') ADVANCE(125); - if (lookahead == ';') ADVANCE(103); - if (lookahead == '<') ADVANCE(186); - if (lookahead == '=') ADVANCE(105); - if (lookahead == '>') ADVANCE(187); - if (lookahead == '?') ADVANCE(117); - if (lookahead == '@') ADVANCE(134); - if (lookahead == '[') ADVANCE(165); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == ']') ADVANCE(166); - if (lookahead == '^') ADVANCE(178); - if (lookahead == '_') ADVANCE(218); + if (lookahead == '(') ADVANCE(116); + if (lookahead == ')') ADVANCE(117); + if (lookahead == '*') ADVANCE(203); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(106); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '.') ADVANCE(200); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(131); + if (lookahead == ':') ADVANCE(127); + if (lookahead == ';') ADVANCE(105); + if (lookahead == '<') ADVANCE(189); + if (lookahead == '=') ADVANCE(107); + if (lookahead == '>') ADVANCE(190); + if (lookahead == '?') ADVANCE(119); + if (lookahead == '@') ADVANCE(136); + if (lookahead == '[') ADVANCE(167); + if (lookahead == '\\') ADVANCE(109); + if (lookahead == ']') ADVANCE(168); + if (lookahead == '^') ADVANCE(181); + if (lookahead == '_') ADVANCE(221); if (lookahead == '`') ADVANCE(59); - if (lookahead == '{') ADVANCE(108); - if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(109); - if (lookahead == '~') ADVANCE(142); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '|') ADVANCE(124); + if (lookahead == '}') ADVANCE(111); + if (lookahead == '~') ADVANCE(144); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(206); + lookahead == 'b') ADVANCE(209); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(208); + lookahead == 'e') ADVANCE(211); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(209); + lookahead == 'f') ADVANCE(212); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(217); + lookahead == 'n') ADVANCE(220); if (lookahead == 'T' || - lookahead == 't') ADVANCE(214); + lookahead == 't') ADVANCE(217); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2742,62 +2911,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); if (('A' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(221); + if (lookahead == '\n') ADVANCE(224); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(221); + if (lookahead == '\n') ADVANCE(224); if (lookahead == '\r') ADVANCE(1); if (lookahead != 0 && - lookahead != '>') ADVANCE(222); + lookahead != '>') ADVANCE(225); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(143); - if (lookahead == '"') ADVANCE(25); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(172); - if (lookahead == '%') ADVANCE(204); - if (lookahead == '&') ADVANCE(111); + if (lookahead == '!') ADVANCE(43); + if (lookahead == '"') ADVANCE(24); + if (lookahead == '#') ADVANCE(227); + if (lookahead == '$') ADVANCE(175); + if (lookahead == '%') ADVANCE(208); + if (lookahead == '&') ADVANCE(114); if (lookahead == '\'') ADVANCE(28); - if (lookahead == '(') ADVANCE(114); - if (lookahead == ')') ADVANCE(115); - if (lookahead == '*') ADVANCE(201); - if (lookahead == '+') ADVANCE(136); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(139); - if (lookahead == '.') ADVANCE(198); - if (lookahead == '/') ADVANCE(202); - if (lookahead == '0') ADVANCE(129); - if (lookahead == ':') ADVANCE(124); - if (lookahead == ';') ADVANCE(103); - if (lookahead == '<') ADVANCE(184); - if (lookahead == '=') ADVANCE(44); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '?') ADVANCE(120); - if (lookahead == '@') ADVANCE(134); - if (lookahead == '[') ADVANCE(165); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == ']') ADVANCE(166); - if (lookahead == '^') ADVANCE(177); - if (lookahead == '_') ADVANCE(218); - if (lookahead == '`') ADVANCE(59); - if (lookahead == '|') ADVANCE(123); - if (lookahead == '}') ADVANCE(109); - if (lookahead == '~') ADVANCE(142); + if (lookahead == '(') ADVANCE(116); + if (lookahead == ')') ADVANCE(117); + if (lookahead == '*') ADVANCE(203); + if (lookahead == '+') ADVANCE(139); + if (lookahead == ',') ADVANCE(106); + if (lookahead == '-') ADVANCE(142); + if (lookahead == '.') ADVANCE(202); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(127); + if (lookahead == ';') ADVANCE(105); + if (lookahead == '<') ADVANCE(188); + if (lookahead == '=') ADVANCE(107); + if (lookahead == '>') ADVANCE(190); + if (lookahead == '?') ADVANCE(119); + if (lookahead == '[') ADVANCE(167); + if (lookahead == '\\') ADVANCE(109); + if (lookahead == ']') ADVANCE(168); + if (lookahead == '^') ADVANCE(181); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '|') ADVANCE(124); + if (lookahead == '}') ADVANCE(111); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(206); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(208); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(209); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(217); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(214); + lookahead == 'b') ADVANCE(209); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2806,41 +2963,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); - if (('A' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); case 4: if (lookahead == '!') ADVANCE(43); - if (lookahead == '"') ADVANCE(25); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(172); - if (lookahead == '%') ADVANCE(205); - if (lookahead == '&') ADVANCE(112); - if (lookahead == '\'') ADVANCE(28); - if (lookahead == '(') ADVANCE(114); - if (lookahead == ')') ADVANCE(115); - if (lookahead == '*') ADVANCE(200); + if (lookahead == '#') ADVANCE(227); + if (lookahead == '$') ADVANCE(175); + if (lookahead == '%') ADVANCE(207); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '(') ADVANCE(116); + if (lookahead == ')') ADVANCE(117); + if (lookahead == '*') ADVANCE(204); if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(140); + if (lookahead == ',') ADVANCE(106); + if (lookahead == '-') ADVANCE(143); if (lookahead == '.') ADVANCE(199); - if (lookahead == '/') ADVANCE(203); - if (lookahead == ':') ADVANCE(125); - if (lookahead == ';') ADVANCE(103); - if (lookahead == '<') ADVANCE(185); - if (lookahead == '=') ADVANCE(105); - if (lookahead == '>') ADVANCE(187); - if (lookahead == '?') ADVANCE(117); - if (lookahead == '[') ADVANCE(165); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == ']') ADVANCE(166); - if (lookahead == '^') ADVANCE(178); - if (lookahead == '{') ADVANCE(108); - if (lookahead == '|') ADVANCE(122); - if (lookahead == '}') ADVANCE(109); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(206); + if (lookahead == '/') ADVANCE(205); + if (lookahead == ':') ADVANCE(127); + if (lookahead == ';') ADVANCE(105); + if (lookahead == '<') ADVANCE(187); + if (lookahead == '=') ADVANCE(107); + if (lookahead == '>') ADVANCE(191); + if (lookahead == '?') ADVANCE(120); + if (lookahead == '[') ADVANCE(167); + if (lookahead == '\\') ADVANCE(109); + if (lookahead == ']') ADVANCE(168); + if (lookahead == '^') ADVANCE(180); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '|') ADVANCE(125); + if (lookahead == '}') ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2851,71 +3004,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(4) if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); case 5: if (lookahead == '!') ADVANCE(43); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(172); - if (lookahead == '%') ADVANCE(204); - if (lookahead == '&') ADVANCE(111); - if (lookahead == '(') ADVANCE(114); - if (lookahead == ')') ADVANCE(115); - if (lookahead == '*') ADVANCE(201); - if (lookahead == '+') ADVANCE(135); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(141); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(202); - if (lookahead == ':') ADVANCE(125); - if (lookahead == ';') ADVANCE(103); - if (lookahead == '<') ADVANCE(184); - if (lookahead == '=') ADVANCE(105); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '?') ADVANCE(118); - if (lookahead == '[') ADVANCE(165); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == ']') ADVANCE(166); - if (lookahead == '^') ADVANCE(177); - if (lookahead == '{') ADVANCE(108); - if (lookahead == '|') ADVANCE(123); - if (lookahead == '}') ADVANCE(109); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(5) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); - END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(43); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(172); - if (lookahead == '%') ADVANCE(204); - if (lookahead == '&') ADVANCE(111); - if (lookahead == ')') ADVANCE(115); - if (lookahead == '*') ADVANCE(201); - if (lookahead == '+') ADVANCE(135); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(202); - if (lookahead == ':') ADVANCE(124); - if (lookahead == ';') ADVANCE(103); - if (lookahead == '<') ADVANCE(184); + if (lookahead == '#') ADVANCE(227); + if (lookahead == '$') ADVANCE(175); + if (lookahead == '%') ADVANCE(207); + if (lookahead == '&') ADVANCE(113); + if (lookahead == ')') ADVANCE(117); + if (lookahead == '*') ADVANCE(204); + if (lookahead == '+') ADVANCE(137); + if (lookahead == ',') ADVANCE(106); + if (lookahead == '-') ADVANCE(140); + if (lookahead == '.') ADVANCE(199); + if (lookahead == '/') ADVANCE(205); + if (lookahead == ':') ADVANCE(126); + if (lookahead == ';') ADVANCE(105); + if (lookahead == '<') ADVANCE(187); if (lookahead == '=') ADVANCE(44); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '?') ADVANCE(120); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == ']') ADVANCE(166); - if (lookahead == '^') ADVANCE(177); - if (lookahead == '|') ADVANCE(123); - if (lookahead == '}') ADVANCE(109); + if (lookahead == '>') ADVANCE(191); + if (lookahead == '?') ADVANCE(122); + if (lookahead == '\\') ADVANCE(109); + if (lookahead == ']') ADVANCE(168); + if (lookahead == '^') ADVANCE(180); + if (lookahead == '|') ADVANCE(125); + if (lookahead == '}') ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2923,23 +3037,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(6) + lookahead == 65279) SKIP(5) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 7: - if (lookahead == '"') ADVANCE(25); - if (lookahead == '#') ADVANCE(222); + case 6: + if (lookahead == '"') ADVANCE(24); + if (lookahead == '#') ADVANCE(227); if (lookahead == '\'') ADVANCE(28); if (lookahead == '.') ADVANCE(60); if (lookahead == '/') ADVANCE(29); - if (lookahead == '0') ADVANCE(129); + if (lookahead == '0') ADVANCE(131); if (lookahead == '?') ADVANCE(46); if (lookahead == '_') ADVANCE(78); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(8); + lookahead == 'b') ADVANCE(7); if (lookahead == 'E' || lookahead == 'e') ADVANCE(62); if (lookahead == 'F' || @@ -2955,145 +3069,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(131); + lookahead == 65279) SKIP(6) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); END_STATE(); - case 8: - if (lookahead == '"') ADVANCE(25); + case 7: + if (lookahead == '"') ADVANCE(24); if (lookahead == '\'') ADVANCE(28); END_STATE(); + case 8: + if (lookahead == '"') ADVANCE(170); + if (lookahead == '-') ADVANCE(24); + if (lookahead == '\\') ADVANCE(83); + if (lookahead != 0) ADVANCE(24); + END_STATE(); case 9: - if (lookahead == '"') ADVANCE(167); - if (lookahead == '-') ADVANCE(25); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '-') ADVANCE(18); if (lookahead == '\\') ADVANCE(83); - if (lookahead != 0) ADVANCE(25); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(167); - if (lookahead == '-') ADVANCE(19); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '-') ADVANCE(20); if (lookahead == '\\') ADVANCE(83); - if (lookahead != 0) ADVANCE(25); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(167); - if (lookahead == '-') ADVANCE(21); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '-') ADVANCE(25); if (lookahead == '\\') ADVANCE(83); - if (lookahead != 0) ADVANCE(25); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(167); - if (lookahead == '-') ADVANCE(26); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '-') ADVANCE(19); if (lookahead == '\\') ADVANCE(83); - if (lookahead != 0) ADVANCE(25); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(167); - if (lookahead == '-') ADVANCE(20); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '-') ADVANCE(21); if (lookahead == '\\') ADVANCE(83); - if (lookahead != 0) ADVANCE(25); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(167); - if (lookahead == '-') ADVANCE(22); + if (lookahead == '"') ADVANCE(170); + if (lookahead == 'A') ADVANCE(9); if (lookahead == '\\') ADVANCE(83); - if (lookahead != 0) ADVANCE(25); + if (lookahead == 'a') ADVANCE(10); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(15); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(167); - if (lookahead == 'A') ADVANCE(10); + if (lookahead == '"') ADVANCE(170); + if (lookahead == 'A') ADVANCE(11); if (lookahead == '\\') ADVANCE(83); - if (lookahead == 'a') ADVANCE(11); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(16); - if (lookahead != 0) ADVANCE(25); + if (lookahead == 'a') ADVANCE(8); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(167); + if (lookahead == '"') ADVANCE(170); if (lookahead == 'A') ADVANCE(12); if (lookahead == '\\') ADVANCE(83); - if (lookahead == 'a') ADVANCE(9); - if (lookahead != 0) ADVANCE(25); + if (lookahead == 'a') ADVANCE(13); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(17); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(167); - if (lookahead == 'A') ADVANCE(13); + if (lookahead == '"') ADVANCE(170); + if (lookahead == 'A') ADVANCE(12); if (lookahead == '\\') ADVANCE(83); - if (lookahead == 'a') ADVANCE(14); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(18); - if (lookahead != 0) ADVANCE(25); + if (lookahead == 'a') ADVANCE(13); + if (lookahead != 0 && + (lookahead < '0' || '9' < lookahead)) ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(17); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(167); - if (lookahead == 'A') ADVANCE(13); + if (lookahead == '"') ADVANCE(170); + if (lookahead == 'F') ADVANCE(15); if (lookahead == '\\') ADVANCE(83); - if (lookahead == 'a') ADVANCE(14); - if (lookahead != 0 && - (lookahead < '0' || '9' < lookahead)) ADVANCE(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(18); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(167); - if (lookahead == 'F') ADVANCE(16); + if (lookahead == '"') ADVANCE(170); + if (lookahead == 'F') ADVANCE(17); if (lookahead == '\\') ADVANCE(83); - if (lookahead != 0) ADVANCE(25); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 20: - if (lookahead == '"') ADVANCE(167); - if (lookahead == 'F') ADVANCE(18); + if (lookahead == '"') ADVANCE(170); if (lookahead == '\\') ADVANCE(83); - if (lookahead != 0) ADVANCE(25); + if (lookahead == 'f') ADVANCE(15); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 21: - if (lookahead == '"') ADVANCE(167); + if (lookahead == '"') ADVANCE(170); if (lookahead == '\\') ADVANCE(83); - if (lookahead == 'f') ADVANCE(16); - if (lookahead != 0) ADVANCE(25); + if (lookahead == 'f') ADVANCE(17); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 22: - if (lookahead == '"') ADVANCE(167); + if (lookahead == '"') ADVANCE(170); if (lookahead == '\\') ADVANCE(83); - if (lookahead == 'f') ADVANCE(18); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '{') ADVANCE(16); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 23: - if (lookahead == '"') ADVANCE(167); + if (lookahead == '"') ADVANCE(170); if (lookahead == '\\') ADVANCE(83); - if (lookahead == '{') ADVANCE(17); - if (lookahead != 0) ADVANCE(25); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(24); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 24: - if (lookahead == '"') ADVANCE(167); + if (lookahead == '"') ADVANCE(170); if (lookahead == '\\') ADVANCE(83); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(25); - if (lookahead != 0) ADVANCE(25); + if (lookahead != 0) ADVANCE(24); END_STATE(); case 25: - if (lookahead == '"') ADVANCE(167); + if (lookahead == '"') ADVANCE(170); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(24); if (lookahead == '\\') ADVANCE(83); - if (lookahead != 0) ADVANCE(25); END_STATE(); case 26: - if (lookahead == '"') ADVANCE(167); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(25); - if (lookahead == '\\') ADVANCE(83); + if (lookahead == '#') ADVANCE(226); + if (lookahead == '$') ADVANCE(175); + if (lookahead == '&') ADVANCE(112); + if (lookahead == ')') ADVANCE(117); + if (lookahead == ',') ADVANCE(106); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '/') ADVANCE(29); + if (lookahead == '?') ADVANCE(121); + if (lookahead == '\\') ADVANCE(109); + if (lookahead == '}') ADVANCE(111); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(26) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); case 27: - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(172); - if (lookahead == '&') ADVANCE(110); - if (lookahead == '(') ADVANCE(114); - if (lookahead == ')') ADVANCE(115); - if (lookahead == ',') ADVANCE(104); + if (lookahead == '#') ADVANCE(227); + if (lookahead == '$') ADVANCE(175); + if (lookahead == '&') ADVANCE(112); + if (lookahead == '(') ADVANCE(116); + if (lookahead == ')') ADVANCE(117); + if (lookahead == ',') ADVANCE(106); if (lookahead == '-') ADVANCE(45); if (lookahead == '.') ADVANCE(39); if (lookahead == '/') ADVANCE(29); if (lookahead == ':') ADVANCE(42); - if (lookahead == '=') ADVANCE(106); + if (lookahead == '=') ADVANCE(108); if (lookahead == '?') ADVANCE(33); - if (lookahead == '[') ADVANCE(165); - if (lookahead == ']') ADVANCE(166); - if (lookahead == '{') ADVANCE(108); - if (lookahead == '|') ADVANCE(121); + if (lookahead == '[') ADVANCE(167); + if (lookahead == ']') ADVANCE(168); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '|') ADVANCE(123); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3105,20 +3243,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); case 28: - if (lookahead == '\'') ADVANCE(167); + if (lookahead == '\'') ADVANCE(170); if (lookahead == '\\') ADVANCE(85); if (lookahead != 0) ADVANCE(28); END_STATE(); case 29: if (lookahead == '*') ADVANCE(31); - if (lookahead == '/') ADVANCE(222); + if (lookahead == '/') ADVANCE(225); END_STATE(); case 30: if (lookahead == '*') ADVANCE(30); - if (lookahead == '/') ADVANCE(221); + if (lookahead == '/') ADVANCE(224); if (lookahead != 0) ADVANCE(31); END_STATE(); case 31: @@ -3128,41 +3266,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 32: if (lookahead == '-') ADVANCE(59); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead != 0) ADVANCE(59); END_STATE(); case 33: if (lookahead == '-') ADVANCE(47); - if (lookahead == '>') ADVANCE(91); + if (lookahead == '>') ADVANCE(92); END_STATE(); case 34: if (lookahead == '-') ADVANCE(53); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead != 0) ADVANCE(59); END_STATE(); case 35: if (lookahead == '-') ADVANCE(55); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead != 0) ADVANCE(59); END_STATE(); case 36: if (lookahead == '-') ADVANCE(84); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead != 0) ADVANCE(59); END_STATE(); case 37: if (lookahead == '-') ADVANCE(54); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead != 0) ADVANCE(59); END_STATE(); case 38: if (lookahead == '-') ADVANCE(56); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead != 0) ADVANCE(59); END_STATE(); case 39: @@ -3176,34 +3314,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40); END_STATE(); case 41: - if (lookahead == '.') ADVANCE(116); + if (lookahead == '.') ADVANCE(118); END_STATE(); case 42: - if (lookahead == ':') ADVANCE(146); + if (lookahead == ':') ADVANCE(148); END_STATE(); case 43: - if (lookahead == '=') ADVANCE(180); + if (lookahead == '=') ADVANCE(183); END_STATE(); case 44: - if (lookahead == '=') ADVANCE(179); - if (lookahead == '>') ADVANCE(113); + if (lookahead == '=') ADVANCE(182); + if (lookahead == '>') ADVANCE(115); END_STATE(); case 45: - if (lookahead == '>') ADVANCE(163); + if (lookahead == '>') ADVANCE(165); END_STATE(); case 46: - if (lookahead == '>') ADVANCE(91); + if (lookahead == '>') ADVANCE(92); END_STATE(); case 47: - if (lookahead == '>') ADVANCE(164); + if (lookahead == '>') ADVANCE(166); END_STATE(); case 48: - if (lookahead == '?') ADVANCE(90); + if (lookahead == '?') ADVANCE(91); END_STATE(); case 49: if (lookahead == 'A') ADVANCE(34); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead == 'a') ADVANCE(35); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); if (lookahead != 0) ADVANCE(59); @@ -3211,14 +3349,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 50: if (lookahead == 'A') ADVANCE(36); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead == 'a') ADVANCE(32); if (lookahead != 0) ADVANCE(59); END_STATE(); case 51: if (lookahead == 'A') ADVANCE(37); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead == 'a') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); if (lookahead != 0) ADVANCE(59); @@ -3226,7 +3364,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 52: if (lookahead == 'A') ADVANCE(37); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead == 'a') ADVANCE(38); if (lookahead != 0 && (lookahead < '0' || '9' < lookahead)) ADVANCE(59); @@ -3235,49 +3373,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 53: if (lookahead == 'F') ADVANCE(50); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead != 0) ADVANCE(59); END_STATE(); case 54: if (lookahead == 'F') ADVANCE(52); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead != 0) ADVANCE(59); END_STATE(); case 55: if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead == 'f') ADVANCE(50); if (lookahead != 0) ADVANCE(59); END_STATE(); case 56: if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead == 'f') ADVANCE(52); if (lookahead != 0) ADVANCE(59); END_STATE(); case 57: if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead == '{') ADVANCE(51); if (lookahead != 0) ADVANCE(59); END_STATE(); case 58: if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(59); if (lookahead != 0) ADVANCE(59); END_STATE(); case 59: if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); if (lookahead != 0) ADVANCE(59); END_STATE(); case 60: if (lookahead == '_') ADVANCE(80); if (lookahead == 'E' || lookahead == 'e') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); case 61: if (lookahead == '_') ADVANCE(80); @@ -3288,7 +3426,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 62: if (lookahead == '+' || lookahead == '-') ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); END_STATE(); case 63: if (lookahead == 'A' || @@ -3296,7 +3434,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 64: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(168); + lookahead == 'e') ADVANCE(171); END_STATE(); case 65: if (lookahead == 'H' || @@ -3308,7 +3446,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 67: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(170); + lookahead == 'l') ADVANCE(173); END_STATE(); case 68: if (lookahead == 'L' || @@ -3316,7 +3454,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 69: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(89); + lookahead == 'p') ADVANCE(90); END_STATE(); case 70: if (lookahead == 'R' || @@ -3336,24 +3474,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 74: if (lookahead == '0' || - lookahead == '1') ADVANCE(132); + lookahead == '1') ADVANCE(134); END_STATE(); case 75: if (lookahead == '8' || lookahead == '9') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(132); END_STATE(); case 76: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(133); END_STATE(); case 77: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); case 78: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40); END_STATE(); case 79: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); END_STATE(); case 80: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(61); @@ -3361,7 +3499,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 81: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(133); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); END_STATE(); case 82: if (lookahead != 0 && @@ -3380,34 +3518,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '0' || '7' < lookahead) && lookahead != 'X' && lookahead != 'u' && - lookahead != 'x') ADVANCE(25); - if (lookahead == 'u') ADVANCE(23); + lookahead != 'x') ADVANCE(24); + if (lookahead == 'u') ADVANCE(22); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(15); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(24); + lookahead == 'x') ADVANCE(14); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(23); END_STATE(); case 84: if (lookahead != 0 && lookahead != '\\' && lookahead != '`') ADVANCE(59); if (lookahead == '\\') ADVANCE(82); - if (lookahead == '`') ADVANCE(149); + if (lookahead == '`') ADVANCE(151); END_STATE(); case 85: if (lookahead != 0) ADVANCE(28); END_STATE(); case 86: - if (eof) ADVANCE(88); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '$') ADVANCE(172); - if (lookahead == '&') ADVANCE(110); - if (lookahead == ')') ADVANCE(115); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '.') ADVANCE(39); - if (lookahead == '/') ADVANCE(29); - if (lookahead == '<') ADVANCE(48); - if (lookahead == '?') ADVANCE(119); - if (lookahead == '\\') ADVANCE(107); + if (eof) ADVANCE(89); + if (lookahead == '!') ADVANCE(145); + if (lookahead == '"') ADVANCE(24); + if (lookahead == '#') ADVANCE(227); + if (lookahead == '$') ADVANCE(175); + if (lookahead == '%') ADVANCE(207); + if (lookahead == '&') ADVANCE(113); + if (lookahead == '\'') ADVANCE(28); + if (lookahead == '(') ADVANCE(116); + if (lookahead == ')') ADVANCE(117); + if (lookahead == '*') ADVANCE(204); + if (lookahead == '+') ADVANCE(138); + if (lookahead == ',') ADVANCE(106); + if (lookahead == '-') ADVANCE(141); + if (lookahead == '.') ADVANCE(201); + if (lookahead == '/') ADVANCE(205); + if (lookahead == '0') ADVANCE(131); + if (lookahead == ':') ADVANCE(127); + if (lookahead == ';') ADVANCE(105); + if (lookahead == '<') ADVANCE(187); + if (lookahead == '=') ADVANCE(107); + if (lookahead == '>') ADVANCE(191); + if (lookahead == '?') ADVANCE(122); + if (lookahead == '@') ADVANCE(136); + if (lookahead == '[') ADVANCE(167); + if (lookahead == '\\') ADVANCE(109); + if (lookahead == ']') ADVANCE(168); + if (lookahead == '^') ADVANCE(180); + if (lookahead == '_') ADVANCE(221); + if (lookahead == '`') ADVANCE(59); + if (lookahead == '{') ADVANCE(110); + if (lookahead == '|') ADVANCE(125); + if (lookahead == '}') ADVANCE(111); + if (lookahead == '~') ADVANCE(144); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(209); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(211); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(212); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(220); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(217); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3416,229 +3587,260 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(86) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (('A' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); case 87: - if (eof) ADVANCE(88); - if (lookahead == '#') ADVANCE(100); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '<') ADVANCE(93); - if (lookahead == '?') ADVANCE(101); + if (eof) ADVANCE(89); + if (lookahead == '#') ADVANCE(102); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '<') ADVANCE(94); + if (lookahead == '?') ADVANCE(103); if (lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(96); + lookahead == 65279) ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(87) - if (lookahead != 0) ADVANCE(102); + if (lookahead != 0) ADVANCE(104); END_STATE(); case 88: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(89); + if (lookahead == '#') ADVANCE(227); + if (lookahead == '$') ADVANCE(175); + if (lookahead == '&') ADVANCE(112); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '/') ADVANCE(29); + if (lookahead == '<') ADVANCE(48); + if (lookahead == '?') ADVANCE(121); + if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(88) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); case 89: - ACCEPT_TOKEN(sym_php_tag); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 90: ACCEPT_TOKEN(sym_php_tag); - if (lookahead == '=') ADVANCE(89); + END_STATE(); + case 91: + ACCEPT_TOKEN(sym_php_tag); + if (lookahead == '=') ADVANCE(90); if (lookahead == 'P' || lookahead == 'p') ADVANCE(65); END_STATE(); - case 91: + case 92: ACCEPT_TOKEN(anon_sym_QMARK_GT); END_STATE(); - case 92: + case 93: ACCEPT_TOKEN(anon_sym_QMARK_GT); if (lookahead != 0 && - lookahead != '<') ADVANCE(102); + lookahead != '<') ADVANCE(104); END_STATE(); - case 93: + case 94: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == '?') ADVANCE(90); + if (lookahead == '?') ADVANCE(91); END_STATE(); - case 94: + case 95: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(102); - if (lookahead == '\r') ADVANCE(95); - if (lookahead == '<') ADVANCE(222); - if (lookahead == '>') ADVANCE(102); - if (lookahead != 0) ADVANCE(100); + if (lookahead == '\n') ADVANCE(104); + if (lookahead == '\r') ADVANCE(96); + if (lookahead == '<') ADVANCE(225); + if (lookahead == '>') ADVANCE(104); + if (lookahead != 0) ADVANCE(101); END_STATE(); - case 95: + case 96: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '\n') ADVANCE(102); + if (lookahead == '\n') ADVANCE(104); if (lookahead != 0 && - lookahead != '<') ADVANCE(102); + lookahead != '<') ADVANCE(104); END_STATE(); - case 96: + case 97: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '#') ADVANCE(100); - if (lookahead == '/') ADVANCE(97); - if (lookahead == '?') ADVANCE(101); + if (lookahead == '#') ADVANCE(102); + if (lookahead == '/') ADVANCE(98); + if (lookahead == '?') ADVANCE(103); if (lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(96); + lookahead == 65279) ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(96); - if (lookahead != 0 && - lookahead != '<') ADVANCE(102); - END_STATE(); - case 97: - ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(99); - if (lookahead == '/') ADVANCE(100); + lookahead == ' ') ADVANCE(97); if (lookahead != 0 && - lookahead != '<') ADVANCE(102); + lookahead != '<') ADVANCE(104); END_STATE(); case 98: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(98); - if (lookahead == '/') ADVANCE(102); - if (lookahead == '<') ADVANCE(31); - if (lookahead != 0) ADVANCE(99); + if (lookahead == '*') ADVANCE(100); + if (lookahead == '/') ADVANCE(101); + if (lookahead != 0 && + lookahead != '<') ADVANCE(104); END_STATE(); case 99: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '*') ADVANCE(98); + if (lookahead == '*') ADVANCE(99); + if (lookahead == '/') ADVANCE(104); if (lookahead == '<') ADVANCE(31); - if (lookahead != 0) ADVANCE(99); + if (lookahead != 0) ADVANCE(100); END_STATE(); case 100: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '<') ADVANCE(222); - if (lookahead == '?') ADVANCE(94); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(102); + if (lookahead == '*') ADVANCE(99); + if (lookahead == '<') ADVANCE(31); if (lookahead != 0) ADVANCE(100); END_STATE(); case 101: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '>') ADVANCE(92); - if (lookahead != 0 && - lookahead != '<') ADVANCE(102); + if (lookahead == '<') ADVANCE(225); + if (lookahead == '?') ADVANCE(95); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(104); + if (lookahead != 0) ADVANCE(101); END_STATE(); case 102: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead != 0 && - lookahead != '<') ADVANCE(102); + if (lookahead == '<') ADVANCE(225); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == '?' || + lookahead == '[') ADVANCE(104); + if (lookahead != 0) ADVANCE(101); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == '>') ADVANCE(93); + if (lookahead != 0 && + lookahead != '<') ADVANCE(104); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead != 0 && + lookahead != '<') ADVANCE(104); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(179); - if (lookahead == '>') ADVANCE(113); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(113); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_BSLASH); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(182); + if (lookahead == '>') ADVANCE(115); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(115); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(176); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 112: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(176); - if (lookahead == '=') ADVANCE(159); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(179); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(179); + if (lookahead == '=') ADVANCE(161); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(47); - if (lookahead == '>') ADVANCE(91); - if (lookahead == '?') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '-') ADVANCE(47); - if (lookahead == '>') ADVANCE(91); - if (lookahead == '?') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 119: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(91); + if (lookahead == '-') ADVANCE(47); + if (lookahead == '>') ADVANCE(92); + if (lookahead == '?') ADVANCE(177); END_STATE(); case 120: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '>') ADVANCE(91); - if (lookahead == '?') ADVANCE(173); + if (lookahead == '-') ADVANCE(47); + if (lookahead == '>') ADVANCE(92); + if (lookahead == '?') ADVANCE(176); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '>') ADVANCE(92); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(161); - if (lookahead == '|') ADVANCE(175); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '>') ADVANCE(92); + if (lookahead == '?') ADVANCE(176); END_STATE(); case 123: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(175); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(163); + if (lookahead == '|') ADVANCE(178); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(146); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(178); END_STATE(); case 126: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(148); + END_STATE(); + case 128: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); + if (lookahead == '_') ADVANCE(222); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 127: + case 129: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(129); END_STATE(); - case 128: + case 130: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(77); if (lookahead == 'E' || lookahead == 'e') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); - case 129: + case 131: ACCEPT_TOKEN(sym_integer); if (lookahead == '.') ADVANCE(60); if (lookahead == '_') ADVANCE(75); @@ -3650,9 +3852,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'x') ADVANCE(81); if (lookahead == '8' || lookahead == '9') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(132); END_STATE(); - case 130: + case 132: ACCEPT_TOKEN(sym_integer); if (lookahead == '.') ADVANCE(60); if (lookahead == '_') ADVANCE(75); @@ -3660,458 +3862,477 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'e') ADVANCE(62); if (lookahead == '8' || lookahead == '9') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(132); END_STATE(); - case 131: + case 133: ACCEPT_TOKEN(sym_integer); if (lookahead == '.') ADVANCE(60); if (lookahead == '_') ADVANCE(76); if (lookahead == 'E' || lookahead == 'e') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(133); END_STATE(); - case 132: + case 134: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(74); if (lookahead == '0' || - lookahead == '1') ADVANCE(132); + lookahead == '1') ADVANCE(134); END_STATE(); - case 133: + case 135: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(133); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_PLUS); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(147); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 137: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(147); - if (lookahead == '=') ADVANCE(154); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(149); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(149); + if (lookahead == '=') ADVANCE(156); END_STATE(); case 140: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '=') ADVANCE(155); - if (lookahead == '>') ADVANCE(163); END_STATE(); case 141: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(163); + if (lookahead == '-') ADVANCE(150); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(150); + if (lookahead == '=') ADVANCE(157); + if (lookahead == '>') ADVANCE(165); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(180); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(165); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(183); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(152); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 149: - ACCEPT_TOKEN(sym_shell_command_expression); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(sym_shell_command_expression); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_DOT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_DOT_EQ); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_QMARK_DASH_GT); END_STATE(); case 167: - ACCEPT_TOKEN(sym_string); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 168: - ACCEPT_TOKEN(sym_boolean); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 169: + ACCEPT_TOKEN(anon_sym_POUND_LBRACK); + END_STATE(); + case 170: + ACCEPT_TOKEN(sym_string); + END_STATE(); + case 171: + ACCEPT_TOKEN(sym_boolean); + END_STATE(); + case 172: ACCEPT_TOKEN(sym_boolean); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 170: + case 173: ACCEPT_TOKEN(sym_null); END_STATE(); - case 171: + case 174: ACCEPT_TOKEN(sym_null); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 172: + case 175: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 173: + case 176: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 174: + case 177: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(162); + if (lookahead == '=') ADVANCE(164); END_STATE(); - case 175: + case 178: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 176: + case 179: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 177: + case 180: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 178: + case 181: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(160); + if (lookahead == '=') ADVANCE(162); END_STATE(); - case 179: + case 182: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(182); + if (lookahead == '=') ADVANCE(185); END_STATE(); - case 180: + case 183: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(183); + if (lookahead == '=') ADVANCE(186); END_STATE(); - case 181: + case 184: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 182: + case 185: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 183: + case 186: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 184: + case 187: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(192); - if (lookahead == '=') ADVANCE(189); - if (lookahead == '>') ADVANCE(181); + if (lookahead == '<') ADVANCE(195); + if (lookahead == '=') ADVANCE(192); + if (lookahead == '>') ADVANCE(184); END_STATE(); - case 185: + case 188: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(193); - if (lookahead == '=') ADVANCE(189); - if (lookahead == '>') ADVANCE(181); + if (lookahead == '<') ADVANCE(196); + if (lookahead == '=') ADVANCE(192); + if (lookahead == '>') ADVANCE(184); END_STATE(); - case 186: + case 189: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '?') ADVANCE(90); + if (lookahead == '?') ADVANCE(91); END_STATE(); - case 187: + case 190: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(190); - if (lookahead == '>') ADVANCE(195); + if (lookahead == '=') ADVANCE(193); + if (lookahead == '>') ADVANCE(198); END_STATE(); - case 188: + case 191: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(190); - if (lookahead == '>') ADVANCE(194); + if (lookahead == '=') ADVANCE(193); + if (lookahead == '>') ADVANCE(197); END_STATE(); - case 189: + case 192: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(191); + if (lookahead == '>') ADVANCE(194); END_STATE(); - case 190: + case 193: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 191: + case 194: ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); - case 192: + case 195: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 193: + case 196: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(157); + if (lookahead == '=') ADVANCE(159); END_STATE(); - case 194: + case 197: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 195: + case 198: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(158); + if (lookahead == '=') ADVANCE(160); END_STATE(); - case 196: + case 199: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 197: + case 200: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(41); - if (lookahead == '=') ADVANCE(156); + if (lookahead == '=') ADVANCE(158); if (lookahead == '_') ADVANCE(80); if (lookahead == 'E' || lookahead == 'e') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); - case 198: + case 201: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(41); if (lookahead == '_') ADVANCE(80); if (lookahead == 'E' || lookahead == 'e') ADVANCE(62); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); - case 199: + case 202: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '=') ADVANCE(156); + if (lookahead == '=') ADVANCE(158); END_STATE(); - case 200: + case 203: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(145); - if (lookahead == '=') ADVANCE(151); + if (lookahead == '*') ADVANCE(147); + if (lookahead == '=') ADVANCE(153); END_STATE(); - case 201: + case 204: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(144); + if (lookahead == '*') ADVANCE(146); END_STATE(); - case 202: + case 205: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(31); - if (lookahead == '/') ADVANCE(222); + if (lookahead == '/') ADVANCE(225); END_STATE(); - case 203: + case 206: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(31); - if (lookahead == '/') ADVANCE(222); - if (lookahead == '=') ADVANCE(152); + if (lookahead == '/') ADVANCE(225); + if (lookahead == '=') ADVANCE(154); END_STATE(); - case 204: + case 207: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 205: + case 208: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(153); + if (lookahead == '=') ADVANCE(155); END_STATE(); - case 206: + case 209: ACCEPT_TOKEN(sym_name); - if (lookahead == '"') ADVANCE(25); + if (lookahead == '"') ADVANCE(24); if (lookahead == '\'') ADVANCE(28); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 207: + case 210: ACCEPT_TOKEN(sym_name); if (lookahead == '.') ADVANCE(60); - if (lookahead == '_') ADVANCE(218); + if (lookahead == '_') ADVANCE(221); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(208); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); + lookahead == 'e') ADVANCE(211); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 208: + case 211: ACCEPT_TOKEN(sym_name); if (lookahead == '+' || lookahead == '-') ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 209: + case 212: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(211); + lookahead == 'a') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 210: + case 213: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(169); + lookahead == 'e') ADVANCE(172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 211: + case 214: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(215); + lookahead == 'l') ADVANCE(218); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 212: + case 215: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(171); + lookahead == 'l') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 213: + case 216: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(212); + lookahead == 'l') ADVANCE(215); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 214: + case 217: ACCEPT_TOKEN(sym_name); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(216); + lookahead == 'r') ADVANCE(219); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 215: + case 218: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(210); + lookahead == 's') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 216: + case 219: ACCEPT_TOKEN(sym_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(210); + lookahead == 'u') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 217: + case 220: ACCEPT_TOKEN(sym_name); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(213); + lookahead == 'u') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 218: + case 221: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 219: + case 222: ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(128); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 220: + case 223: ACCEPT_TOKEN(sym_name); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || - (161 <= lookahead && lookahead <= 255)) ADVANCE(220); + (161 <= lookahead && lookahead <= 255)) ADVANCE(223); END_STATE(); - case 221: + case 224: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 222: + case 225: ACCEPT_TOKEN(sym_comment); if (lookahead == '?') ADVANCE(2); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(222); + lookahead != '\r') ADVANCE(225); + END_STATE(); + case 226: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '[') ADVANCE(169); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '?') ADVANCE(225); + END_STATE(); + case 227: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '?' && + lookahead != '[') ADVANCE(225); END_STATE(); default: return false; @@ -5720,62 +5941,62 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [21] = {.lex_state = 0, .external_lex_state = 2}, [22] = {.lex_state = 0, .external_lex_state = 2}, [23] = {.lex_state = 0, .external_lex_state = 2}, - [24] = {.lex_state = 0, .external_lex_state = 2}, - [25] = {.lex_state = 0, .external_lex_state = 2}, - [26] = {.lex_state = 0, .external_lex_state = 2}, + [24] = {.lex_state = 0, .external_lex_state = 3}, + [25] = {.lex_state = 0, .external_lex_state = 3}, + [26] = {.lex_state = 0, .external_lex_state = 3}, [27] = {.lex_state = 0, .external_lex_state = 2}, - [28] = {.lex_state = 0, .external_lex_state = 3}, - [29] = {.lex_state = 0, .external_lex_state = 3}, + [28] = {.lex_state = 0, .external_lex_state = 2}, + [29] = {.lex_state = 0, .external_lex_state = 2}, [30] = {.lex_state = 0, .external_lex_state = 2}, - [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}, + [31] = {.lex_state = 0, .external_lex_state = 3}, + [32] = {.lex_state = 0, .external_lex_state = 3}, + [33] = {.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 = 3}, - [38] = {.lex_state = 0, .external_lex_state = 3}, + [36] = {.lex_state = 0, .external_lex_state = 3}, + [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 = 2}, - [41] = {.lex_state = 0, .external_lex_state = 3}, + [40] = {.lex_state = 0, .external_lex_state = 3}, + [41] = {.lex_state = 0, .external_lex_state = 2}, [42] = {.lex_state = 0, .external_lex_state = 2}, - [43] = {.lex_state = 0, .external_lex_state = 3}, + [43] = {.lex_state = 0, .external_lex_state = 2}, [44] = {.lex_state = 0, .external_lex_state = 2}, - [45] = {.lex_state = 0, .external_lex_state = 3}, - [46] = {.lex_state = 0, .external_lex_state = 3}, - [47] = {.lex_state = 0, .external_lex_state = 2}, - [48] = {.lex_state = 0, .external_lex_state = 3}, - [49] = {.lex_state = 0, .external_lex_state = 3}, + [45] = {.lex_state = 0, .external_lex_state = 2}, + [46] = {.lex_state = 0, .external_lex_state = 2}, + [47] = {.lex_state = 0, .external_lex_state = 3}, + [48] = {.lex_state = 0, .external_lex_state = 2}, + [49] = {.lex_state = 0, .external_lex_state = 2}, [50] = {.lex_state = 0, .external_lex_state = 3}, [51] = {.lex_state = 0, .external_lex_state = 2}, [52] = {.lex_state = 0, .external_lex_state = 2}, - [53] = {.lex_state = 0, .external_lex_state = 2}, - [54] = {.lex_state = 0, .external_lex_state = 3}, - [55] = {.lex_state = 0, .external_lex_state = 3}, + [53] = {.lex_state = 0, .external_lex_state = 3}, + [54] = {.lex_state = 0, .external_lex_state = 2}, + [55] = {.lex_state = 0, .external_lex_state = 2}, [56] = {.lex_state = 0, .external_lex_state = 2}, - [57] = {.lex_state = 0, .external_lex_state = 3}, + [57] = {.lex_state = 0, .external_lex_state = 2}, [58] = {.lex_state = 0, .external_lex_state = 2}, - [59] = {.lex_state = 0, .external_lex_state = 2}, - [60] = {.lex_state = 0, .external_lex_state = 3}, + [59] = {.lex_state = 0, .external_lex_state = 3}, + [60] = {.lex_state = 0, .external_lex_state = 2}, [61] = {.lex_state = 0, .external_lex_state = 2}, [62] = {.lex_state = 0, .external_lex_state = 2}, - [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 = 3}, - [67] = {.lex_state = 0, .external_lex_state = 3}, + [66] = {.lex_state = 0, .external_lex_state = 2}, + [67] = {.lex_state = 0, .external_lex_state = 2}, [68] = {.lex_state = 0, .external_lex_state = 3}, [69] = {.lex_state = 0, .external_lex_state = 2}, [70] = {.lex_state = 0, .external_lex_state = 2}, - [71] = {.lex_state = 0, .external_lex_state = 2}, - [72] = {.lex_state = 0, .external_lex_state = 2}, + [71] = {.lex_state = 0, .external_lex_state = 3}, + [72] = {.lex_state = 0, .external_lex_state = 3}, [73] = {.lex_state = 0, .external_lex_state = 2}, - [74] = {.lex_state = 0, .external_lex_state = 2}, - [75] = {.lex_state = 0, .external_lex_state = 2}, + [74] = {.lex_state = 0, .external_lex_state = 3}, + [75] = {.lex_state = 0, .external_lex_state = 3}, [76] = {.lex_state = 0, .external_lex_state = 2}, [77] = {.lex_state = 0, .external_lex_state = 2}, [78] = {.lex_state = 0, .external_lex_state = 3}, - [79] = {.lex_state = 0, .external_lex_state = 2}, + [79] = {.lex_state = 0, .external_lex_state = 3}, [80] = {.lex_state = 0, .external_lex_state = 2}, [81] = {.lex_state = 0, .external_lex_state = 2}, [82] = {.lex_state = 0, .external_lex_state = 2}, @@ -5786,314 +6007,314 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [87] = {.lex_state = 0, .external_lex_state = 2}, [88] = {.lex_state = 0, .external_lex_state = 2}, [89] = {.lex_state = 0, .external_lex_state = 2}, - [90] = {.lex_state = 3, .external_lex_state = 2}, - [91] = {.lex_state = 3, .external_lex_state = 2}, - [92] = {.lex_state = 3, .external_lex_state = 3}, - [93] = {.lex_state = 3, .external_lex_state = 2}, - [94] = {.lex_state = 0, .external_lex_state = 2}, - [95] = {.lex_state = 0, .external_lex_state = 2}, - [96] = {.lex_state = 0, .external_lex_state = 2}, - [97] = {.lex_state = 0, .external_lex_state = 2}, - [98] = {.lex_state = 0, .external_lex_state = 2}, - [99] = {.lex_state = 0, .external_lex_state = 2}, - [100] = {.lex_state = 0, .external_lex_state = 2}, - [101] = {.lex_state = 0, .external_lex_state = 2}, - [102] = {.lex_state = 0, .external_lex_state = 2}, - [103] = {.lex_state = 0, .external_lex_state = 2}, - [104] = {.lex_state = 0, .external_lex_state = 2}, - [105] = {.lex_state = 0, .external_lex_state = 2}, - [106] = {.lex_state = 0, .external_lex_state = 2}, - [107] = {.lex_state = 0, .external_lex_state = 2}, - [108] = {.lex_state = 0, .external_lex_state = 2}, - [109] = {.lex_state = 0, .external_lex_state = 2}, - [110] = {.lex_state = 0, .external_lex_state = 2}, - [111] = {.lex_state = 0, .external_lex_state = 2}, - [112] = {.lex_state = 0, .external_lex_state = 2}, - [113] = {.lex_state = 0, .external_lex_state = 2}, - [114] = {.lex_state = 0, .external_lex_state = 2}, - [115] = {.lex_state = 0, .external_lex_state = 2}, - [116] = {.lex_state = 0, .external_lex_state = 2}, - [117] = {.lex_state = 0, .external_lex_state = 2}, - [118] = {.lex_state = 0, .external_lex_state = 2}, - [119] = {.lex_state = 0, .external_lex_state = 2}, - [120] = {.lex_state = 0, .external_lex_state = 2}, - [121] = {.lex_state = 0, .external_lex_state = 2}, - [122] = {.lex_state = 0, .external_lex_state = 2}, - [123] = {.lex_state = 0, .external_lex_state = 2}, - [124] = {.lex_state = 0, .external_lex_state = 2}, - [125] = {.lex_state = 0, .external_lex_state = 2}, - [126] = {.lex_state = 0, .external_lex_state = 2}, - [127] = {.lex_state = 0, .external_lex_state = 2}, - [128] = {.lex_state = 0, .external_lex_state = 2}, - [129] = {.lex_state = 0, .external_lex_state = 2}, - [130] = {.lex_state = 0, .external_lex_state = 2}, - [131] = {.lex_state = 0, .external_lex_state = 2}, - [132] = {.lex_state = 0, .external_lex_state = 2}, - [133] = {.lex_state = 0, .external_lex_state = 2}, - [134] = {.lex_state = 0, .external_lex_state = 2}, - [135] = {.lex_state = 0, .external_lex_state = 2}, - [136] = {.lex_state = 0, .external_lex_state = 2}, - [137] = {.lex_state = 0, .external_lex_state = 2}, - [138] = {.lex_state = 0, .external_lex_state = 2}, - [139] = {.lex_state = 0, .external_lex_state = 2}, - [140] = {.lex_state = 0, .external_lex_state = 2}, - [141] = {.lex_state = 0, .external_lex_state = 2}, - [142] = {.lex_state = 0, .external_lex_state = 2}, - [143] = {.lex_state = 0, .external_lex_state = 2}, - [144] = {.lex_state = 0, .external_lex_state = 2}, - [145] = {.lex_state = 0, .external_lex_state = 2}, - [146] = {.lex_state = 0, .external_lex_state = 2}, - [147] = {.lex_state = 0, .external_lex_state = 2}, - [148] = {.lex_state = 0, .external_lex_state = 2}, - [149] = {.lex_state = 0, .external_lex_state = 2}, - [150] = {.lex_state = 0, .external_lex_state = 2}, - [151] = {.lex_state = 0, .external_lex_state = 2}, - [152] = {.lex_state = 0, .external_lex_state = 2}, - [153] = {.lex_state = 0, .external_lex_state = 2}, - [154] = {.lex_state = 0, .external_lex_state = 2}, - [155] = {.lex_state = 0, .external_lex_state = 2}, - [156] = {.lex_state = 0, .external_lex_state = 2}, - [157] = {.lex_state = 0, .external_lex_state = 2}, - [158] = {.lex_state = 0, .external_lex_state = 2}, - [159] = {.lex_state = 0, .external_lex_state = 2}, - [160] = {.lex_state = 0, .external_lex_state = 2}, - [161] = {.lex_state = 0, .external_lex_state = 2}, - [162] = {.lex_state = 0, .external_lex_state = 2}, - [163] = {.lex_state = 0, .external_lex_state = 3}, - [164] = {.lex_state = 0, .external_lex_state = 2}, - [165] = {.lex_state = 0, .external_lex_state = 3}, - [166] = {.lex_state = 0, .external_lex_state = 2}, - [167] = {.lex_state = 0, .external_lex_state = 3}, - [168] = {.lex_state = 0, .external_lex_state = 3}, - [169] = {.lex_state = 0, .external_lex_state = 3}, - [170] = {.lex_state = 0, .external_lex_state = 2}, - [171] = {.lex_state = 0, .external_lex_state = 2}, - [172] = {.lex_state = 0, .external_lex_state = 2}, - [173] = {.lex_state = 0, .external_lex_state = 2}, - [174] = {.lex_state = 0, .external_lex_state = 2}, - [175] = {.lex_state = 0, .external_lex_state = 3}, - [176] = {.lex_state = 0, .external_lex_state = 2}, - [177] = {.lex_state = 0, .external_lex_state = 2}, - [178] = {.lex_state = 0, .external_lex_state = 2}, - [179] = {.lex_state = 0, .external_lex_state = 2}, - [180] = {.lex_state = 0, .external_lex_state = 2}, - [181] = {.lex_state = 0, .external_lex_state = 2}, - [182] = {.lex_state = 0, .external_lex_state = 2}, - [183] = {.lex_state = 0, .external_lex_state = 2}, - [184] = {.lex_state = 0, .external_lex_state = 2}, - [185] = {.lex_state = 0, .external_lex_state = 2}, - [186] = {.lex_state = 0, .external_lex_state = 2}, - [187] = {.lex_state = 0, .external_lex_state = 2}, - [188] = {.lex_state = 0, .external_lex_state = 2}, - [189] = {.lex_state = 0, .external_lex_state = 2}, - [190] = {.lex_state = 0, .external_lex_state = 2}, - [191] = {.lex_state = 0, .external_lex_state = 2}, - [192] = {.lex_state = 0, .external_lex_state = 2}, - [193] = {.lex_state = 0, .external_lex_state = 2}, - [194] = {.lex_state = 0, .external_lex_state = 2}, - [195] = {.lex_state = 0, .external_lex_state = 2}, - [196] = {.lex_state = 0, .external_lex_state = 2}, - [197] = {.lex_state = 0, .external_lex_state = 2}, - [198] = {.lex_state = 0, .external_lex_state = 2}, - [199] = {.lex_state = 0, .external_lex_state = 2}, - [200] = {.lex_state = 0, .external_lex_state = 2}, - [201] = {.lex_state = 0, .external_lex_state = 2}, - [202] = {.lex_state = 0, .external_lex_state = 2}, - [203] = {.lex_state = 0, .external_lex_state = 2}, - [204] = {.lex_state = 0, .external_lex_state = 2}, - [205] = {.lex_state = 0, .external_lex_state = 2}, - [206] = {.lex_state = 0, .external_lex_state = 2}, - [207] = {.lex_state = 0, .external_lex_state = 2}, - [208] = {.lex_state = 0, .external_lex_state = 2}, - [209] = {.lex_state = 0, .external_lex_state = 2}, - [210] = {.lex_state = 0, .external_lex_state = 2}, - [211] = {.lex_state = 0, .external_lex_state = 2}, - [212] = {.lex_state = 0, .external_lex_state = 2}, - [213] = {.lex_state = 0, .external_lex_state = 2}, - [214] = {.lex_state = 0, .external_lex_state = 2}, - [215] = {.lex_state = 0, .external_lex_state = 2}, - [216] = {.lex_state = 0, .external_lex_state = 2}, - [217] = {.lex_state = 0, .external_lex_state = 2}, - [218] = {.lex_state = 0, .external_lex_state = 2}, - [219] = {.lex_state = 0, .external_lex_state = 2}, - [220] = {.lex_state = 0, .external_lex_state = 2}, - [221] = {.lex_state = 0, .external_lex_state = 2}, - [222] = {.lex_state = 0, .external_lex_state = 2}, - [223] = {.lex_state = 0, .external_lex_state = 2}, - [224] = {.lex_state = 0, .external_lex_state = 2}, - [225] = {.lex_state = 0, .external_lex_state = 2}, - [226] = {.lex_state = 0, .external_lex_state = 2}, - [227] = {.lex_state = 0, .external_lex_state = 2}, - [228] = {.lex_state = 0, .external_lex_state = 2}, - [229] = {.lex_state = 0, .external_lex_state = 2}, - [230] = {.lex_state = 0, .external_lex_state = 2}, - [231] = {.lex_state = 0, .external_lex_state = 2}, - [232] = {.lex_state = 0, .external_lex_state = 2}, - [233] = {.lex_state = 0, .external_lex_state = 2}, - [234] = {.lex_state = 0, .external_lex_state = 2}, - [235] = {.lex_state = 0, .external_lex_state = 2}, - [236] = {.lex_state = 0, .external_lex_state = 2}, - [237] = {.lex_state = 0, .external_lex_state = 2}, - [238] = {.lex_state = 0, .external_lex_state = 2}, - [239] = {.lex_state = 0, .external_lex_state = 2}, - [240] = {.lex_state = 0, .external_lex_state = 2}, - [241] = {.lex_state = 0, .external_lex_state = 2}, - [242] = {.lex_state = 0, .external_lex_state = 2}, - [243] = {.lex_state = 0, .external_lex_state = 2}, - [244] = {.lex_state = 0, .external_lex_state = 2}, - [245] = {.lex_state = 0, .external_lex_state = 2}, - [246] = {.lex_state = 0, .external_lex_state = 2}, - [247] = {.lex_state = 0, .external_lex_state = 2}, - [248] = {.lex_state = 0, .external_lex_state = 2}, - [249] = {.lex_state = 0, .external_lex_state = 2}, - [250] = {.lex_state = 0, .external_lex_state = 2}, - [251] = {.lex_state = 0, .external_lex_state = 2}, - [252] = {.lex_state = 0, .external_lex_state = 2}, - [253] = {.lex_state = 0, .external_lex_state = 2}, - [254] = {.lex_state = 0, .external_lex_state = 2}, - [255] = {.lex_state = 0, .external_lex_state = 2}, - [256] = {.lex_state = 0, .external_lex_state = 2}, - [257] = {.lex_state = 0, .external_lex_state = 2}, - [258] = {.lex_state = 0, .external_lex_state = 2}, - [259] = {.lex_state = 0, .external_lex_state = 2}, - [260] = {.lex_state = 0, .external_lex_state = 2}, - [261] = {.lex_state = 0, .external_lex_state = 2}, - [262] = {.lex_state = 0, .external_lex_state = 2}, - [263] = {.lex_state = 0, .external_lex_state = 2}, - [264] = {.lex_state = 0, .external_lex_state = 2}, - [265] = {.lex_state = 0, .external_lex_state = 2}, - [266] = {.lex_state = 0, .external_lex_state = 2}, - [267] = {.lex_state = 0, .external_lex_state = 2}, - [268] = {.lex_state = 0, .external_lex_state = 2}, - [269] = {.lex_state = 0, .external_lex_state = 2}, - [270] = {.lex_state = 0, .external_lex_state = 2}, - [271] = {.lex_state = 0, .external_lex_state = 2}, - [272] = {.lex_state = 0, .external_lex_state = 2}, - [273] = {.lex_state = 0, .external_lex_state = 2}, - [274] = {.lex_state = 0, .external_lex_state = 2}, - [275] = {.lex_state = 0, .external_lex_state = 2}, - [276] = {.lex_state = 0, .external_lex_state = 2}, - [277] = {.lex_state = 0, .external_lex_state = 2}, - [278] = {.lex_state = 0, .external_lex_state = 2}, - [279] = {.lex_state = 0, .external_lex_state = 2}, - [280] = {.lex_state = 0, .external_lex_state = 2}, - [281] = {.lex_state = 0, .external_lex_state = 2}, - [282] = {.lex_state = 0, .external_lex_state = 2}, - [283] = {.lex_state = 0, .external_lex_state = 2}, - [284] = {.lex_state = 0, .external_lex_state = 2}, - [285] = {.lex_state = 0, .external_lex_state = 2}, - [286] = {.lex_state = 0, .external_lex_state = 2}, - [287] = {.lex_state = 0, .external_lex_state = 2}, - [288] = {.lex_state = 0, .external_lex_state = 2}, - [289] = {.lex_state = 0, .external_lex_state = 2}, - [290] = {.lex_state = 0, .external_lex_state = 2}, - [291] = {.lex_state = 0, .external_lex_state = 2}, - [292] = {.lex_state = 0, .external_lex_state = 2}, - [293] = {.lex_state = 0, .external_lex_state = 2}, - [294] = {.lex_state = 0, .external_lex_state = 2}, - [295] = {.lex_state = 0, .external_lex_state = 2}, - [296] = {.lex_state = 0, .external_lex_state = 2}, - [297] = {.lex_state = 0, .external_lex_state = 2}, - [298] = {.lex_state = 0, .external_lex_state = 2}, - [299] = {.lex_state = 0, .external_lex_state = 2}, - [300] = {.lex_state = 0, .external_lex_state = 2}, - [301] = {.lex_state = 0, .external_lex_state = 2}, - [302] = {.lex_state = 0, .external_lex_state = 2}, - [303] = {.lex_state = 0, .external_lex_state = 2}, - [304] = {.lex_state = 0, .external_lex_state = 2}, - [305] = {.lex_state = 0, .external_lex_state = 2}, - [306] = {.lex_state = 0, .external_lex_state = 2}, - [307] = {.lex_state = 0, .external_lex_state = 2}, - [308] = {.lex_state = 0, .external_lex_state = 2}, - [309] = {.lex_state = 0, .external_lex_state = 2}, - [310] = {.lex_state = 0, .external_lex_state = 2}, - [311] = {.lex_state = 0, .external_lex_state = 2}, - [312] = {.lex_state = 0, .external_lex_state = 2}, - [313] = {.lex_state = 0, .external_lex_state = 2}, - [314] = {.lex_state = 0, .external_lex_state = 2}, - [315] = {.lex_state = 0, .external_lex_state = 2}, - [316] = {.lex_state = 0, .external_lex_state = 2}, - [317] = {.lex_state = 0, .external_lex_state = 2}, - [318] = {.lex_state = 0, .external_lex_state = 2}, - [319] = {.lex_state = 0, .external_lex_state = 2}, - [320] = {.lex_state = 0, .external_lex_state = 2}, - [321] = {.lex_state = 0, .external_lex_state = 2}, - [322] = {.lex_state = 0, .external_lex_state = 2}, - [323] = {.lex_state = 0, .external_lex_state = 2}, - [324] = {.lex_state = 0, .external_lex_state = 2}, - [325] = {.lex_state = 0, .external_lex_state = 2}, - [326] = {.lex_state = 0, .external_lex_state = 2}, - [327] = {.lex_state = 0, .external_lex_state = 2}, - [328] = {.lex_state = 0, .external_lex_state = 2}, - [329] = {.lex_state = 0, .external_lex_state = 2}, - [330] = {.lex_state = 0, .external_lex_state = 2}, - [331] = {.lex_state = 0, .external_lex_state = 2}, - [332] = {.lex_state = 0, .external_lex_state = 2}, - [333] = {.lex_state = 0, .external_lex_state = 2}, - [334] = {.lex_state = 0, .external_lex_state = 2}, - [335] = {.lex_state = 0, .external_lex_state = 2}, - [336] = {.lex_state = 0, .external_lex_state = 2}, - [337] = {.lex_state = 0, .external_lex_state = 2}, - [338] = {.lex_state = 0, .external_lex_state = 2}, - [339] = {.lex_state = 0, .external_lex_state = 2}, - [340] = {.lex_state = 0, .external_lex_state = 2}, - [341] = {.lex_state = 0, .external_lex_state = 2}, - [342] = {.lex_state = 0, .external_lex_state = 2}, - [343] = {.lex_state = 0, .external_lex_state = 2}, - [344] = {.lex_state = 0, .external_lex_state = 2}, - [345] = {.lex_state = 0, .external_lex_state = 2}, - [346] = {.lex_state = 0, .external_lex_state = 2}, - [347] = {.lex_state = 0, .external_lex_state = 2}, - [348] = {.lex_state = 0, .external_lex_state = 2}, - [349] = {.lex_state = 0, .external_lex_state = 2}, - [350] = {.lex_state = 0, .external_lex_state = 2}, - [351] = {.lex_state = 0, .external_lex_state = 2}, - [352] = {.lex_state = 0, .external_lex_state = 2}, - [353] = {.lex_state = 0, .external_lex_state = 2}, - [354] = {.lex_state = 0, .external_lex_state = 2}, - [355] = {.lex_state = 0, .external_lex_state = 2}, - [356] = {.lex_state = 0, .external_lex_state = 2}, - [357] = {.lex_state = 0, .external_lex_state = 2}, - [358] = {.lex_state = 0, .external_lex_state = 2}, - [359] = {.lex_state = 0, .external_lex_state = 2}, - [360] = {.lex_state = 0, .external_lex_state = 2}, - [361] = {.lex_state = 0, .external_lex_state = 2}, - [362] = {.lex_state = 0, .external_lex_state = 2}, - [363] = {.lex_state = 0, .external_lex_state = 2}, - [364] = {.lex_state = 0, .external_lex_state = 2}, - [365] = {.lex_state = 0, .external_lex_state = 2}, - [366] = {.lex_state = 0, .external_lex_state = 2}, - [367] = {.lex_state = 0, .external_lex_state = 2}, - [368] = {.lex_state = 0, .external_lex_state = 2}, - [369] = {.lex_state = 0, .external_lex_state = 2}, - [370] = {.lex_state = 0, .external_lex_state = 2}, - [371] = {.lex_state = 0, .external_lex_state = 2}, - [372] = {.lex_state = 0, .external_lex_state = 2}, - [373] = {.lex_state = 0, .external_lex_state = 2}, - [374] = {.lex_state = 0, .external_lex_state = 2}, - [375] = {.lex_state = 0, .external_lex_state = 2}, - [376] = {.lex_state = 0, .external_lex_state = 2}, - [377] = {.lex_state = 0, .external_lex_state = 2}, - [378] = {.lex_state = 0, .external_lex_state = 2}, - [379] = {.lex_state = 0, .external_lex_state = 2}, - [380] = {.lex_state = 0, .external_lex_state = 2}, - [381] = {.lex_state = 0, .external_lex_state = 2}, - [382] = {.lex_state = 0, .external_lex_state = 2}, - [383] = {.lex_state = 0, .external_lex_state = 2}, - [384] = {.lex_state = 0, .external_lex_state = 2}, - [385] = {.lex_state = 0, .external_lex_state = 2}, - [386] = {.lex_state = 0, .external_lex_state = 2}, - [387] = {.lex_state = 0, .external_lex_state = 2}, - [388] = {.lex_state = 0, .external_lex_state = 2}, - [389] = {.lex_state = 0, .external_lex_state = 2}, - [390] = {.lex_state = 0, .external_lex_state = 2}, - [391] = {.lex_state = 0, .external_lex_state = 2}, - [392] = {.lex_state = 0, .external_lex_state = 2}, - [393] = {.lex_state = 0, .external_lex_state = 2}, - [394] = {.lex_state = 0, .external_lex_state = 2}, - [395] = {.lex_state = 0, .external_lex_state = 2}, - [396] = {.lex_state = 0, .external_lex_state = 2}, - [397] = {.lex_state = 0, .external_lex_state = 2}, + [90] = {.lex_state = 86, .external_lex_state = 2}, + [91] = {.lex_state = 86, .external_lex_state = 2}, + [92] = {.lex_state = 86, .external_lex_state = 3}, + [93] = {.lex_state = 86, .external_lex_state = 2}, + [94] = {.lex_state = 86, .external_lex_state = 2}, + [95] = {.lex_state = 86, .external_lex_state = 2}, + [96] = {.lex_state = 86, .external_lex_state = 2}, + [97] = {.lex_state = 86, .external_lex_state = 2}, + [98] = {.lex_state = 86, .external_lex_state = 2}, + [99] = {.lex_state = 86, .external_lex_state = 2}, + [100] = {.lex_state = 86, .external_lex_state = 2}, + [101] = {.lex_state = 86, .external_lex_state = 2}, + [102] = {.lex_state = 86, .external_lex_state = 2}, + [103] = {.lex_state = 86, .external_lex_state = 2}, + [104] = {.lex_state = 86, .external_lex_state = 2}, + [105] = {.lex_state = 86, .external_lex_state = 2}, + [106] = {.lex_state = 86, .external_lex_state = 2}, + [107] = {.lex_state = 86, .external_lex_state = 2}, + [108] = {.lex_state = 86, .external_lex_state = 2}, + [109] = {.lex_state = 86, .external_lex_state = 2}, + [110] = {.lex_state = 86, .external_lex_state = 2}, + [111] = {.lex_state = 86, .external_lex_state = 2}, + [112] = {.lex_state = 86, .external_lex_state = 2}, + [113] = {.lex_state = 86, .external_lex_state = 2}, + [114] = {.lex_state = 86, .external_lex_state = 2}, + [115] = {.lex_state = 86, .external_lex_state = 2}, + [116] = {.lex_state = 86, .external_lex_state = 2}, + [117] = {.lex_state = 86, .external_lex_state = 2}, + [118] = {.lex_state = 86, .external_lex_state = 2}, + [119] = {.lex_state = 86, .external_lex_state = 2}, + [120] = {.lex_state = 86, .external_lex_state = 2}, + [121] = {.lex_state = 86, .external_lex_state = 2}, + [122] = {.lex_state = 86, .external_lex_state = 2}, + [123] = {.lex_state = 86, .external_lex_state = 2}, + [124] = {.lex_state = 86, .external_lex_state = 2}, + [125] = {.lex_state = 86, .external_lex_state = 2}, + [126] = {.lex_state = 86, .external_lex_state = 2}, + [127] = {.lex_state = 86, .external_lex_state = 2}, + [128] = {.lex_state = 86, .external_lex_state = 2}, + [129] = {.lex_state = 86, .external_lex_state = 2}, + [130] = {.lex_state = 86, .external_lex_state = 2}, + [131] = {.lex_state = 86, .external_lex_state = 2}, + [132] = {.lex_state = 86, .external_lex_state = 2}, + [133] = {.lex_state = 86, .external_lex_state = 2}, + [134] = {.lex_state = 86, .external_lex_state = 2}, + [135] = {.lex_state = 86, .external_lex_state = 2}, + [136] = {.lex_state = 86, .external_lex_state = 2}, + [137] = {.lex_state = 86, .external_lex_state = 2}, + [138] = {.lex_state = 86, .external_lex_state = 2}, + [139] = {.lex_state = 86, .external_lex_state = 2}, + [140] = {.lex_state = 86, .external_lex_state = 2}, + [141] = {.lex_state = 86, .external_lex_state = 2}, + [142] = {.lex_state = 86, .external_lex_state = 2}, + [143] = {.lex_state = 86, .external_lex_state = 2}, + [144] = {.lex_state = 86, .external_lex_state = 2}, + [145] = {.lex_state = 86, .external_lex_state = 2}, + [146] = {.lex_state = 86, .external_lex_state = 2}, + [147] = {.lex_state = 86, .external_lex_state = 2}, + [148] = {.lex_state = 86, .external_lex_state = 2}, + [149] = {.lex_state = 86, .external_lex_state = 2}, + [150] = {.lex_state = 86, .external_lex_state = 2}, + [151] = {.lex_state = 86, .external_lex_state = 2}, + [152] = {.lex_state = 86, .external_lex_state = 2}, + [153] = {.lex_state = 86, .external_lex_state = 2}, + [154] = {.lex_state = 86, .external_lex_state = 2}, + [155] = {.lex_state = 86, .external_lex_state = 2}, + [156] = {.lex_state = 86, .external_lex_state = 2}, + [157] = {.lex_state = 86, .external_lex_state = 2}, + [158] = {.lex_state = 86, .external_lex_state = 2}, + [159] = {.lex_state = 86, .external_lex_state = 2}, + [160] = {.lex_state = 86, .external_lex_state = 2}, + [161] = {.lex_state = 86, .external_lex_state = 2}, + [162] = {.lex_state = 86, .external_lex_state = 2}, + [163] = {.lex_state = 86, .external_lex_state = 3}, + [164] = {.lex_state = 86, .external_lex_state = 2}, + [165] = {.lex_state = 86, .external_lex_state = 2}, + [166] = {.lex_state = 86, .external_lex_state = 2}, + [167] = {.lex_state = 86, .external_lex_state = 2}, + [168] = {.lex_state = 86, .external_lex_state = 3}, + [169] = {.lex_state = 86, .external_lex_state = 2}, + [170] = {.lex_state = 86, .external_lex_state = 3}, + [171] = {.lex_state = 86, .external_lex_state = 3}, + [172] = {.lex_state = 86, .external_lex_state = 3}, + [173] = {.lex_state = 86, .external_lex_state = 3}, + [174] = {.lex_state = 86, .external_lex_state = 2}, + [175] = {.lex_state = 86, .external_lex_state = 2}, + [176] = {.lex_state = 86, .external_lex_state = 2}, + [177] = {.lex_state = 86, .external_lex_state = 2}, + [178] = {.lex_state = 86, .external_lex_state = 2}, + [179] = {.lex_state = 86, .external_lex_state = 2}, + [180] = {.lex_state = 86, .external_lex_state = 2}, + [181] = {.lex_state = 86, .external_lex_state = 2}, + [182] = {.lex_state = 86, .external_lex_state = 2}, + [183] = {.lex_state = 86, .external_lex_state = 2}, + [184] = {.lex_state = 86, .external_lex_state = 2}, + [185] = {.lex_state = 86, .external_lex_state = 2}, + [186] = {.lex_state = 86, .external_lex_state = 2}, + [187] = {.lex_state = 86, .external_lex_state = 2}, + [188] = {.lex_state = 86, .external_lex_state = 2}, + [189] = {.lex_state = 86, .external_lex_state = 2}, + [190] = {.lex_state = 86, .external_lex_state = 2}, + [191] = {.lex_state = 86, .external_lex_state = 2}, + [192] = {.lex_state = 86, .external_lex_state = 2}, + [193] = {.lex_state = 86, .external_lex_state = 2}, + [194] = {.lex_state = 86, .external_lex_state = 2}, + [195] = {.lex_state = 86, .external_lex_state = 2}, + [196] = {.lex_state = 86, .external_lex_state = 2}, + [197] = {.lex_state = 86, .external_lex_state = 2}, + [198] = {.lex_state = 86, .external_lex_state = 2}, + [199] = {.lex_state = 86, .external_lex_state = 2}, + [200] = {.lex_state = 86, .external_lex_state = 2}, + [201] = {.lex_state = 86, .external_lex_state = 2}, + [202] = {.lex_state = 86, .external_lex_state = 2}, + [203] = {.lex_state = 86, .external_lex_state = 2}, + [204] = {.lex_state = 86, .external_lex_state = 2}, + [205] = {.lex_state = 86, .external_lex_state = 2}, + [206] = {.lex_state = 86, .external_lex_state = 2}, + [207] = {.lex_state = 86, .external_lex_state = 2}, + [208] = {.lex_state = 86, .external_lex_state = 2}, + [209] = {.lex_state = 86, .external_lex_state = 2}, + [210] = {.lex_state = 86, .external_lex_state = 2}, + [211] = {.lex_state = 86, .external_lex_state = 2}, + [212] = {.lex_state = 86, .external_lex_state = 2}, + [213] = {.lex_state = 86, .external_lex_state = 2}, + [214] = {.lex_state = 86, .external_lex_state = 2}, + [215] = {.lex_state = 86, .external_lex_state = 2}, + [216] = {.lex_state = 86, .external_lex_state = 2}, + [217] = {.lex_state = 86, .external_lex_state = 2}, + [218] = {.lex_state = 86, .external_lex_state = 2}, + [219] = {.lex_state = 86, .external_lex_state = 2}, + [220] = {.lex_state = 86, .external_lex_state = 2}, + [221] = {.lex_state = 86, .external_lex_state = 2}, + [222] = {.lex_state = 86, .external_lex_state = 2}, + [223] = {.lex_state = 86, .external_lex_state = 2}, + [224] = {.lex_state = 86, .external_lex_state = 2}, + [225] = {.lex_state = 86, .external_lex_state = 2}, + [226] = {.lex_state = 86, .external_lex_state = 2}, + [227] = {.lex_state = 86, .external_lex_state = 2}, + [228] = {.lex_state = 86, .external_lex_state = 2}, + [229] = {.lex_state = 86, .external_lex_state = 2}, + [230] = {.lex_state = 86, .external_lex_state = 2}, + [231] = {.lex_state = 86, .external_lex_state = 2}, + [232] = {.lex_state = 86, .external_lex_state = 2}, + [233] = {.lex_state = 86, .external_lex_state = 2}, + [234] = {.lex_state = 86, .external_lex_state = 2}, + [235] = {.lex_state = 86, .external_lex_state = 2}, + [236] = {.lex_state = 86, .external_lex_state = 2}, + [237] = {.lex_state = 86, .external_lex_state = 2}, + [238] = {.lex_state = 86, .external_lex_state = 2}, + [239] = {.lex_state = 86, .external_lex_state = 2}, + [240] = {.lex_state = 86, .external_lex_state = 2}, + [241] = {.lex_state = 86, .external_lex_state = 2}, + [242] = {.lex_state = 86, .external_lex_state = 2}, + [243] = {.lex_state = 86, .external_lex_state = 2}, + [244] = {.lex_state = 86, .external_lex_state = 2}, + [245] = {.lex_state = 86, .external_lex_state = 2}, + [246] = {.lex_state = 86, .external_lex_state = 2}, + [247] = {.lex_state = 86, .external_lex_state = 2}, + [248] = {.lex_state = 86, .external_lex_state = 2}, + [249] = {.lex_state = 86, .external_lex_state = 2}, + [250] = {.lex_state = 86, .external_lex_state = 2}, + [251] = {.lex_state = 86, .external_lex_state = 2}, + [252] = {.lex_state = 86, .external_lex_state = 2}, + [253] = {.lex_state = 86, .external_lex_state = 2}, + [254] = {.lex_state = 86, .external_lex_state = 2}, + [255] = {.lex_state = 86, .external_lex_state = 2}, + [256] = {.lex_state = 86, .external_lex_state = 2}, + [257] = {.lex_state = 86, .external_lex_state = 2}, + [258] = {.lex_state = 86, .external_lex_state = 2}, + [259] = {.lex_state = 86, .external_lex_state = 2}, + [260] = {.lex_state = 86, .external_lex_state = 2}, + [261] = {.lex_state = 86, .external_lex_state = 2}, + [262] = {.lex_state = 86, .external_lex_state = 2}, + [263] = {.lex_state = 86, .external_lex_state = 2}, + [264] = {.lex_state = 86, .external_lex_state = 2}, + [265] = {.lex_state = 86, .external_lex_state = 2}, + [266] = {.lex_state = 86, .external_lex_state = 2}, + [267] = {.lex_state = 86, .external_lex_state = 2}, + [268] = {.lex_state = 86, .external_lex_state = 2}, + [269] = {.lex_state = 86, .external_lex_state = 2}, + [270] = {.lex_state = 86, .external_lex_state = 2}, + [271] = {.lex_state = 86, .external_lex_state = 2}, + [272] = {.lex_state = 86, .external_lex_state = 2}, + [273] = {.lex_state = 86, .external_lex_state = 2}, + [274] = {.lex_state = 86, .external_lex_state = 2}, + [275] = {.lex_state = 86, .external_lex_state = 2}, + [276] = {.lex_state = 86, .external_lex_state = 2}, + [277] = {.lex_state = 86, .external_lex_state = 2}, + [278] = {.lex_state = 86, .external_lex_state = 2}, + [279] = {.lex_state = 86, .external_lex_state = 2}, + [280] = {.lex_state = 86, .external_lex_state = 2}, + [281] = {.lex_state = 86, .external_lex_state = 2}, + [282] = {.lex_state = 86, .external_lex_state = 2}, + [283] = {.lex_state = 86, .external_lex_state = 2}, + [284] = {.lex_state = 86, .external_lex_state = 2}, + [285] = {.lex_state = 86, .external_lex_state = 2}, + [286] = {.lex_state = 86, .external_lex_state = 2}, + [287] = {.lex_state = 86, .external_lex_state = 2}, + [288] = {.lex_state = 86, .external_lex_state = 2}, + [289] = {.lex_state = 86, .external_lex_state = 2}, + [290] = {.lex_state = 86, .external_lex_state = 2}, + [291] = {.lex_state = 86, .external_lex_state = 2}, + [292] = {.lex_state = 86, .external_lex_state = 2}, + [293] = {.lex_state = 86, .external_lex_state = 2}, + [294] = {.lex_state = 86, .external_lex_state = 2}, + [295] = {.lex_state = 86, .external_lex_state = 2}, + [296] = {.lex_state = 86, .external_lex_state = 2}, + [297] = {.lex_state = 86, .external_lex_state = 2}, + [298] = {.lex_state = 86, .external_lex_state = 2}, + [299] = {.lex_state = 86, .external_lex_state = 2}, + [300] = {.lex_state = 86, .external_lex_state = 2}, + [301] = {.lex_state = 86, .external_lex_state = 2}, + [302] = {.lex_state = 86, .external_lex_state = 2}, + [303] = {.lex_state = 86, .external_lex_state = 2}, + [304] = {.lex_state = 86, .external_lex_state = 2}, + [305] = {.lex_state = 86, .external_lex_state = 2}, + [306] = {.lex_state = 86, .external_lex_state = 2}, + [307] = {.lex_state = 86, .external_lex_state = 2}, + [308] = {.lex_state = 86, .external_lex_state = 2}, + [309] = {.lex_state = 86, .external_lex_state = 2}, + [310] = {.lex_state = 86, .external_lex_state = 2}, + [311] = {.lex_state = 86, .external_lex_state = 2}, + [312] = {.lex_state = 86, .external_lex_state = 2}, + [313] = {.lex_state = 86, .external_lex_state = 2}, + [314] = {.lex_state = 86, .external_lex_state = 2}, + [315] = {.lex_state = 86, .external_lex_state = 2}, + [316] = {.lex_state = 86, .external_lex_state = 2}, + [317] = {.lex_state = 86, .external_lex_state = 2}, + [318] = {.lex_state = 86, .external_lex_state = 2}, + [319] = {.lex_state = 86, .external_lex_state = 2}, + [320] = {.lex_state = 86, .external_lex_state = 2}, + [321] = {.lex_state = 86, .external_lex_state = 2}, + [322] = {.lex_state = 86, .external_lex_state = 2}, + [323] = {.lex_state = 86, .external_lex_state = 2}, + [324] = {.lex_state = 86, .external_lex_state = 2}, + [325] = {.lex_state = 86, .external_lex_state = 2}, + [326] = {.lex_state = 86, .external_lex_state = 2}, + [327] = {.lex_state = 86, .external_lex_state = 2}, + [328] = {.lex_state = 86, .external_lex_state = 2}, + [329] = {.lex_state = 86, .external_lex_state = 2}, + [330] = {.lex_state = 86, .external_lex_state = 2}, + [331] = {.lex_state = 86, .external_lex_state = 2}, + [332] = {.lex_state = 86, .external_lex_state = 2}, + [333] = {.lex_state = 86, .external_lex_state = 2}, + [334] = {.lex_state = 86, .external_lex_state = 2}, + [335] = {.lex_state = 86, .external_lex_state = 2}, + [336] = {.lex_state = 86, .external_lex_state = 2}, + [337] = {.lex_state = 86, .external_lex_state = 2}, + [338] = {.lex_state = 86, .external_lex_state = 2}, + [339] = {.lex_state = 86, .external_lex_state = 2}, + [340] = {.lex_state = 86, .external_lex_state = 2}, + [341] = {.lex_state = 86, .external_lex_state = 2}, + [342] = {.lex_state = 86, .external_lex_state = 2}, + [343] = {.lex_state = 86, .external_lex_state = 2}, + [344] = {.lex_state = 86, .external_lex_state = 2}, + [345] = {.lex_state = 86, .external_lex_state = 2}, + [346] = {.lex_state = 86, .external_lex_state = 2}, + [347] = {.lex_state = 86, .external_lex_state = 2}, + [348] = {.lex_state = 86, .external_lex_state = 2}, + [349] = {.lex_state = 86, .external_lex_state = 2}, + [350] = {.lex_state = 86, .external_lex_state = 2}, + [351] = {.lex_state = 86, .external_lex_state = 2}, + [352] = {.lex_state = 86, .external_lex_state = 2}, + [353] = {.lex_state = 86, .external_lex_state = 2}, + [354] = {.lex_state = 86, .external_lex_state = 2}, + [355] = {.lex_state = 86, .external_lex_state = 2}, + [356] = {.lex_state = 86, .external_lex_state = 2}, + [357] = {.lex_state = 86, .external_lex_state = 2}, + [358] = {.lex_state = 86, .external_lex_state = 2}, + [359] = {.lex_state = 86, .external_lex_state = 2}, + [360] = {.lex_state = 86, .external_lex_state = 2}, + [361] = {.lex_state = 86, .external_lex_state = 2}, + [362] = {.lex_state = 86, .external_lex_state = 2}, + [363] = {.lex_state = 86, .external_lex_state = 2}, + [364] = {.lex_state = 86, .external_lex_state = 2}, + [365] = {.lex_state = 86, .external_lex_state = 2}, + [366] = {.lex_state = 86, .external_lex_state = 2}, + [367] = {.lex_state = 86, .external_lex_state = 2}, + [368] = {.lex_state = 86, .external_lex_state = 2}, + [369] = {.lex_state = 86, .external_lex_state = 2}, + [370] = {.lex_state = 86, .external_lex_state = 2}, + [371] = {.lex_state = 86, .external_lex_state = 2}, + [372] = {.lex_state = 86, .external_lex_state = 2}, + [373] = {.lex_state = 86, .external_lex_state = 2}, + [374] = {.lex_state = 86, .external_lex_state = 2}, + [375] = {.lex_state = 86, .external_lex_state = 2}, + [376] = {.lex_state = 86, .external_lex_state = 2}, + [377] = {.lex_state = 86, .external_lex_state = 2}, + [378] = {.lex_state = 86, .external_lex_state = 2}, + [379] = {.lex_state = 86, .external_lex_state = 2}, + [380] = {.lex_state = 86, .external_lex_state = 2}, + [381] = {.lex_state = 86, .external_lex_state = 2}, + [382] = {.lex_state = 86, .external_lex_state = 2}, + [383] = {.lex_state = 86, .external_lex_state = 2}, + [384] = {.lex_state = 86, .external_lex_state = 2}, + [385] = {.lex_state = 86, .external_lex_state = 2}, + [386] = {.lex_state = 86, .external_lex_state = 2}, + [387] = {.lex_state = 86, .external_lex_state = 2}, + [388] = {.lex_state = 86, .external_lex_state = 2}, + [389] = {.lex_state = 86, .external_lex_state = 2}, + [390] = {.lex_state = 86, .external_lex_state = 2}, + [391] = {.lex_state = 86, .external_lex_state = 2}, + [392] = {.lex_state = 86, .external_lex_state = 2}, + [393] = {.lex_state = 86, .external_lex_state = 2}, + [394] = {.lex_state = 86, .external_lex_state = 2}, + [395] = {.lex_state = 86, .external_lex_state = 2}, + [396] = {.lex_state = 86, .external_lex_state = 2}, + [397] = {.lex_state = 86, .external_lex_state = 2}, [398] = {.lex_state = 0, .external_lex_state = 2}, [399] = {.lex_state = 0, .external_lex_state = 2}, [400] = {.lex_state = 0, .external_lex_state = 2}, @@ -6103,24 +6324,24 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [404] = {.lex_state = 0, .external_lex_state = 2}, [405] = {.lex_state = 0, .external_lex_state = 2}, [406] = {.lex_state = 0, .external_lex_state = 2}, - [407] = {.lex_state = 0, .external_lex_state = 3}, - [408] = {.lex_state = 0, .external_lex_state = 3}, - [409] = {.lex_state = 0, .external_lex_state = 3}, - [410] = {.lex_state = 0, .external_lex_state = 3}, + [407] = {.lex_state = 0, .external_lex_state = 2}, + [408] = {.lex_state = 0, .external_lex_state = 2}, + [409] = {.lex_state = 0, .external_lex_state = 2}, + [410] = {.lex_state = 0, .external_lex_state = 2}, [411] = {.lex_state = 0, .external_lex_state = 3}, [412] = {.lex_state = 0, .external_lex_state = 3}, [413] = {.lex_state = 0, .external_lex_state = 3}, [414] = {.lex_state = 0, .external_lex_state = 3}, - [415] = {.lex_state = 0, .external_lex_state = 2}, - [416] = {.lex_state = 0, .external_lex_state = 2}, - [417] = {.lex_state = 0, .external_lex_state = 2}, - [418] = {.lex_state = 0, .external_lex_state = 2}, - [419] = {.lex_state = 0, .external_lex_state = 2}, - [420] = {.lex_state = 0, .external_lex_state = 2}, - [421] = {.lex_state = 0, .external_lex_state = 2}, - [422] = {.lex_state = 0, .external_lex_state = 2}, - [423] = {.lex_state = 0, .external_lex_state = 2}, - [424] = {.lex_state = 0, .external_lex_state = 2}, + [415] = {.lex_state = 0, .external_lex_state = 3}, + [416] = {.lex_state = 0, .external_lex_state = 3}, + [417] = {.lex_state = 0, .external_lex_state = 3}, + [418] = {.lex_state = 0, .external_lex_state = 3}, + [419] = {.lex_state = 0, .external_lex_state = 3}, + [420] = {.lex_state = 0, .external_lex_state = 3}, + [421] = {.lex_state = 0, .external_lex_state = 3}, + [422] = {.lex_state = 0, .external_lex_state = 3}, + [423] = {.lex_state = 0, .external_lex_state = 3}, + [424] = {.lex_state = 0, .external_lex_state = 3}, [425] = {.lex_state = 0, .external_lex_state = 2}, [426] = {.lex_state = 0, .external_lex_state = 2}, [427] = {.lex_state = 0, .external_lex_state = 2}, @@ -6201,1458 +6422,1581 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [502] = {.lex_state = 0, .external_lex_state = 2}, [503] = {.lex_state = 0, .external_lex_state = 2}, [504] = {.lex_state = 0, .external_lex_state = 2}, - [505] = {.lex_state = 4}, - [506] = {.lex_state = 4}, - [507] = {.lex_state = 4}, - [508] = {.lex_state = 4}, - [509] = {.lex_state = 4}, - [510] = {.lex_state = 4}, - [511] = {.lex_state = 4}, - [512] = {.lex_state = 4}, - [513] = {.lex_state = 4}, - [514] = {.lex_state = 4}, - [515] = {.lex_state = 4}, - [516] = {.lex_state = 4}, - [517] = {.lex_state = 4}, - [518] = {.lex_state = 4}, - [519] = {.lex_state = 4}, - [520] = {.lex_state = 4}, - [521] = {.lex_state = 4}, - [522] = {.lex_state = 4}, - [523] = {.lex_state = 4}, - [524] = {.lex_state = 4}, - [525] = {.lex_state = 4}, - [526] = {.lex_state = 4}, - [527] = {.lex_state = 4}, - [528] = {.lex_state = 4}, - [529] = {.lex_state = 4}, - [530] = {.lex_state = 4, .external_lex_state = 4}, - [531] = {.lex_state = 4}, - [532] = {.lex_state = 4, .external_lex_state = 4}, - [533] = {.lex_state = 0, .external_lex_state = 2}, - [534] = {.lex_state = 4}, - [535] = {.lex_state = 4, .external_lex_state = 4}, - [536] = {.lex_state = 0, .external_lex_state = 2}, - [537] = {.lex_state = 0, .external_lex_state = 2}, - [538] = {.lex_state = 4, .external_lex_state = 4}, - [539] = {.lex_state = 4}, - [540] = {.lex_state = 4, .external_lex_state = 4}, - [541] = {.lex_state = 4}, - [542] = {.lex_state = 4, .external_lex_state = 4}, - [543] = {.lex_state = 0, .external_lex_state = 2}, - [544] = {.lex_state = 4, .external_lex_state = 4}, - [545] = {.lex_state = 4, .external_lex_state = 4}, - [546] = {.lex_state = 4, .external_lex_state = 4}, - [547] = {.lex_state = 4, .external_lex_state = 4}, - [548] = {.lex_state = 4, .external_lex_state = 4}, - [549] = {.lex_state = 4, .external_lex_state = 4}, - [550] = {.lex_state = 4, .external_lex_state = 4}, - [551] = {.lex_state = 4, .external_lex_state = 4}, - [552] = {.lex_state = 4, .external_lex_state = 4}, - [553] = {.lex_state = 4, .external_lex_state = 4}, - [554] = {.lex_state = 4}, - [555] = {.lex_state = 4, .external_lex_state = 4}, - [556] = {.lex_state = 4, .external_lex_state = 4}, - [557] = {.lex_state = 4}, - [558] = {.lex_state = 4, .external_lex_state = 4}, - [559] = {.lex_state = 4, .external_lex_state = 4}, - [560] = {.lex_state = 4}, - [561] = {.lex_state = 4}, - [562] = {.lex_state = 4, .external_lex_state = 4}, - [563] = {.lex_state = 4, .external_lex_state = 4}, - [564] = {.lex_state = 4, .external_lex_state = 4}, - [565] = {.lex_state = 4}, - [566] = {.lex_state = 4}, - [567] = {.lex_state = 4}, - [568] = {.lex_state = 4}, - [569] = {.lex_state = 4, .external_lex_state = 4}, - [570] = {.lex_state = 4, .external_lex_state = 4}, - [571] = {.lex_state = 4}, - [572] = {.lex_state = 4}, - [573] = {.lex_state = 4}, - [574] = {.lex_state = 0, .external_lex_state = 2}, - [575] = {.lex_state = 0, .external_lex_state = 2}, - [576] = {.lex_state = 4}, - [577] = {.lex_state = 0, .external_lex_state = 2}, - [578] = {.lex_state = 0, .external_lex_state = 2}, - [579] = {.lex_state = 5}, - [580] = {.lex_state = 4}, - [581] = {.lex_state = 4}, - [582] = {.lex_state = 5}, - [583] = {.lex_state = 5}, - [584] = {.lex_state = 5}, - [585] = {.lex_state = 5}, - [586] = {.lex_state = 5}, - [587] = {.lex_state = 5}, - [588] = {.lex_state = 5}, - [589] = {.lex_state = 5}, - [590] = {.lex_state = 5}, - [591] = {.lex_state = 5}, - [592] = {.lex_state = 4}, - [593] = {.lex_state = 5}, - [594] = {.lex_state = 5}, - [595] = {.lex_state = 5}, - [596] = {.lex_state = 4}, - [597] = {.lex_state = 5}, - [598] = {.lex_state = 5}, - [599] = {.lex_state = 5}, - [600] = {.lex_state = 5}, - [601] = {.lex_state = 5}, - [602] = {.lex_state = 5}, - [603] = {.lex_state = 5}, - [604] = {.lex_state = 5}, - [605] = {.lex_state = 5}, - [606] = {.lex_state = 5}, - [607] = {.lex_state = 5}, - [608] = {.lex_state = 5}, - [609] = {.lex_state = 5}, - [610] = {.lex_state = 5}, - [611] = {.lex_state = 5}, - [612] = {.lex_state = 5}, - [613] = {.lex_state = 5}, - [614] = {.lex_state = 5}, - [615] = {.lex_state = 5}, - [616] = {.lex_state = 5}, - [617] = {.lex_state = 5}, - [618] = {.lex_state = 5}, - [619] = {.lex_state = 5}, - [620] = {.lex_state = 5}, - [621] = {.lex_state = 5}, - [622] = {.lex_state = 5}, - [623] = {.lex_state = 5}, - [624] = {.lex_state = 5}, - [625] = {.lex_state = 5}, - [626] = {.lex_state = 5}, - [627] = {.lex_state = 5}, - [628] = {.lex_state = 5}, - [629] = {.lex_state = 5}, - [630] = {.lex_state = 5}, - [631] = {.lex_state = 5}, - [632] = {.lex_state = 5}, - [633] = {.lex_state = 5}, - [634] = {.lex_state = 5}, - [635] = {.lex_state = 5}, - [636] = {.lex_state = 5}, - [637] = {.lex_state = 5}, - [638] = {.lex_state = 4, .external_lex_state = 4}, - [639] = {.lex_state = 5}, - [640] = {.lex_state = 5}, - [641] = {.lex_state = 6}, - [642] = {.lex_state = 5, .external_lex_state = 4}, - [643] = {.lex_state = 6}, - [644] = {.lex_state = 5, .external_lex_state = 4}, - [645] = {.lex_state = 5}, - [646] = {.lex_state = 5}, - [647] = {.lex_state = 5, .external_lex_state = 4}, - [648] = {.lex_state = 4, .external_lex_state = 4}, - [649] = {.lex_state = 5}, - [650] = {.lex_state = 6}, - [651] = {.lex_state = 5, .external_lex_state = 4}, - [652] = {.lex_state = 5, .external_lex_state = 4}, - [653] = {.lex_state = 5, .external_lex_state = 4}, - [654] = {.lex_state = 5, .external_lex_state = 4}, - [655] = {.lex_state = 5, .external_lex_state = 4}, - [656] = {.lex_state = 6}, - [657] = {.lex_state = 5, .external_lex_state = 4}, - [658] = {.lex_state = 5, .external_lex_state = 4}, - [659] = {.lex_state = 5, .external_lex_state = 4}, - [660] = {.lex_state = 5, .external_lex_state = 4}, - [661] = {.lex_state = 5, .external_lex_state = 4}, - [662] = {.lex_state = 5, .external_lex_state = 4}, - [663] = {.lex_state = 5, .external_lex_state = 4}, - [664] = {.lex_state = 5, .external_lex_state = 4}, - [665] = {.lex_state = 6}, + [505] = {.lex_state = 0, .external_lex_state = 2}, + [506] = {.lex_state = 0, .external_lex_state = 2}, + [507] = {.lex_state = 0, .external_lex_state = 2}, + [508] = {.lex_state = 0, .external_lex_state = 2}, + [509] = {.lex_state = 0, .external_lex_state = 2}, + [510] = {.lex_state = 0, .external_lex_state = 2}, + [511] = {.lex_state = 0, .external_lex_state = 2}, + [512] = {.lex_state = 0, .external_lex_state = 2}, + [513] = {.lex_state = 0, .external_lex_state = 2}, + [514] = {.lex_state = 0, .external_lex_state = 2}, + [515] = {.lex_state = 0, .external_lex_state = 2}, + [516] = {.lex_state = 0, .external_lex_state = 2}, + [517] = {.lex_state = 0, .external_lex_state = 2}, + [518] = {.lex_state = 86, .external_lex_state = 2}, + [519] = {.lex_state = 86, .external_lex_state = 2}, + [520] = {.lex_state = 86, .external_lex_state = 2}, + [521] = {.lex_state = 86, .external_lex_state = 2}, + [522] = {.lex_state = 86, .external_lex_state = 2}, + [523] = {.lex_state = 3}, + [524] = {.lex_state = 3}, + [525] = {.lex_state = 3}, + [526] = {.lex_state = 3}, + [527] = {.lex_state = 3}, + [528] = {.lex_state = 3}, + [529] = {.lex_state = 3}, + [530] = {.lex_state = 3}, + [531] = {.lex_state = 3}, + [532] = {.lex_state = 3}, + [533] = {.lex_state = 3}, + [534] = {.lex_state = 3}, + [535] = {.lex_state = 3}, + [536] = {.lex_state = 3}, + [537] = {.lex_state = 3}, + [538] = {.lex_state = 3}, + [539] = {.lex_state = 3}, + [540] = {.lex_state = 3}, + [541] = {.lex_state = 3}, + [542] = {.lex_state = 3}, + [543] = {.lex_state = 3}, + [544] = {.lex_state = 3}, + [545] = {.lex_state = 3}, + [546] = {.lex_state = 3}, + [547] = {.lex_state = 3}, + [548] = {.lex_state = 3}, + [549] = {.lex_state = 86, .external_lex_state = 2}, + [550] = {.lex_state = 3, .external_lex_state = 4}, + [551] = {.lex_state = 86, .external_lex_state = 2}, + [552] = {.lex_state = 3, .external_lex_state = 4}, + [553] = {.lex_state = 3, .external_lex_state = 4}, + [554] = {.lex_state = 86, .external_lex_state = 2}, + [555] = {.lex_state = 3, .external_lex_state = 4}, + [556] = {.lex_state = 3}, + [557] = {.lex_state = 3, .external_lex_state = 4}, + [558] = {.lex_state = 3}, + [559] = {.lex_state = 3, .external_lex_state = 4}, + [560] = {.lex_state = 3}, + [561] = {.lex_state = 3, .external_lex_state = 4}, + [562] = {.lex_state = 86, .external_lex_state = 2}, + [563] = {.lex_state = 3}, + [564] = {.lex_state = 3, .external_lex_state = 4}, + [565] = {.lex_state = 3, .external_lex_state = 4}, + [566] = {.lex_state = 3, .external_lex_state = 4}, + [567] = {.lex_state = 3, .external_lex_state = 4}, + [568] = {.lex_state = 3, .external_lex_state = 4}, + [569] = {.lex_state = 3, .external_lex_state = 4}, + [570] = {.lex_state = 3, .external_lex_state = 4}, + [571] = {.lex_state = 3}, + [572] = {.lex_state = 3, .external_lex_state = 4}, + [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}, + [577] = {.lex_state = 3, .external_lex_state = 4}, + [578] = {.lex_state = 3, .external_lex_state = 4}, + [579] = {.lex_state = 3, .external_lex_state = 4}, + [580] = {.lex_state = 3}, + [581] = {.lex_state = 3, .external_lex_state = 4}, + [582] = {.lex_state = 3, .external_lex_state = 4}, + [583] = {.lex_state = 3}, + [584] = {.lex_state = 3}, + [585] = {.lex_state = 3, .external_lex_state = 4}, + [586] = {.lex_state = 3, .external_lex_state = 4}, + [587] = {.lex_state = 3}, + [588] = {.lex_state = 3}, + [589] = {.lex_state = 86, .external_lex_state = 2}, + [590] = {.lex_state = 3}, + [591] = {.lex_state = 86, .external_lex_state = 2}, + [592] = {.lex_state = 86, .external_lex_state = 2}, + [593] = {.lex_state = 3}, + [594] = {.lex_state = 3}, + [595] = {.lex_state = 3}, + [596] = {.lex_state = 86, .external_lex_state = 2}, + [597] = {.lex_state = 4}, + [598] = {.lex_state = 3}, + [599] = {.lex_state = 3}, + [600] = {.lex_state = 4}, + [601] = {.lex_state = 4}, + [602] = {.lex_state = 4}, + [603] = {.lex_state = 4}, + [604] = {.lex_state = 4}, + [605] = {.lex_state = 4}, + [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 = 4}, + [613] = {.lex_state = 4}, + [614] = {.lex_state = 4}, + [615] = {.lex_state = 4}, + [616] = {.lex_state = 4}, + [617] = {.lex_state = 4}, + [618] = {.lex_state = 4}, + [619] = {.lex_state = 4}, + [620] = {.lex_state = 4}, + [621] = {.lex_state = 4}, + [622] = {.lex_state = 4}, + [623] = {.lex_state = 3}, + [624] = {.lex_state = 3}, + [625] = {.lex_state = 4}, + [626] = {.lex_state = 4}, + [627] = {.lex_state = 4}, + [628] = {.lex_state = 4}, + [629] = {.lex_state = 4}, + [630] = {.lex_state = 4}, + [631] = {.lex_state = 4}, + [632] = {.lex_state = 4}, + [633] = {.lex_state = 4}, + [634] = {.lex_state = 4}, + [635] = {.lex_state = 4}, + [636] = {.lex_state = 4}, + [637] = {.lex_state = 4}, + [638] = {.lex_state = 4}, + [639] = {.lex_state = 4}, + [640] = {.lex_state = 4}, + [641] = {.lex_state = 4}, + [642] = {.lex_state = 4}, + [643] = {.lex_state = 4}, + [644] = {.lex_state = 4}, + [645] = {.lex_state = 4}, + [646] = {.lex_state = 4}, + [647] = {.lex_state = 4}, + [648] = {.lex_state = 4}, + [649] = {.lex_state = 4}, + [650] = {.lex_state = 4}, + [651] = {.lex_state = 4}, + [652] = {.lex_state = 4}, + [653] = {.lex_state = 4}, + [654] = {.lex_state = 4}, + [655] = {.lex_state = 4}, + [656] = {.lex_state = 5}, + [657] = {.lex_state = 4, .external_lex_state = 4}, + [658] = {.lex_state = 3, .external_lex_state = 4}, + [659] = {.lex_state = 4}, + [660] = {.lex_state = 4}, + [661] = {.lex_state = 4}, + [662] = {.lex_state = 4, .external_lex_state = 4}, + [663] = {.lex_state = 5}, + [664] = {.lex_state = 4}, + [665] = {.lex_state = 4}, [666] = {.lex_state = 4, .external_lex_state = 4}, - [667] = {.lex_state = 5, .external_lex_state = 4}, - [668] = {.lex_state = 5, .external_lex_state = 4}, - [669] = {.lex_state = 5, .external_lex_state = 4}, - [670] = {.lex_state = 5, .external_lex_state = 4}, - [671] = {.lex_state = 5}, - [672] = {.lex_state = 5, .external_lex_state = 4}, - [673] = {.lex_state = 5, .external_lex_state = 4}, - [674] = {.lex_state = 5, .external_lex_state = 4}, - [675] = {.lex_state = 5, .external_lex_state = 4}, - [676] = {.lex_state = 5, .external_lex_state = 4}, - [677] = {.lex_state = 5, .external_lex_state = 4}, - [678] = {.lex_state = 5, .external_lex_state = 4}, - [679] = {.lex_state = 5, .external_lex_state = 4}, - [680] = {.lex_state = 5, .external_lex_state = 4}, - [681] = {.lex_state = 5, .external_lex_state = 4}, - [682] = {.lex_state = 5, .external_lex_state = 4}, - [683] = {.lex_state = 5, .external_lex_state = 4}, - [684] = {.lex_state = 5, .external_lex_state = 4}, - [685] = {.lex_state = 4, .external_lex_state = 4}, - [686] = {.lex_state = 5, .external_lex_state = 4}, - [687] = {.lex_state = 5, .external_lex_state = 4}, - [688] = {.lex_state = 5, .external_lex_state = 4}, - [689] = {.lex_state = 5}, - [690] = {.lex_state = 5, .external_lex_state = 4}, - [691] = {.lex_state = 5, .external_lex_state = 4}, - [692] = {.lex_state = 5, .external_lex_state = 4}, - [693] = {.lex_state = 5, .external_lex_state = 4}, - [694] = {.lex_state = 5, .external_lex_state = 4}, - [695] = {.lex_state = 5, .external_lex_state = 4}, - [696] = {.lex_state = 5, .external_lex_state = 4}, - [697] = {.lex_state = 5, .external_lex_state = 4}, - [698] = {.lex_state = 5, .external_lex_state = 4}, - [699] = {.lex_state = 5, .external_lex_state = 4}, - [700] = {.lex_state = 5, .external_lex_state = 4}, - [701] = {.lex_state = 5, .external_lex_state = 4}, - [702] = {.lex_state = 5, .external_lex_state = 4}, - [703] = {.lex_state = 5, .external_lex_state = 4}, - [704] = {.lex_state = 5, .external_lex_state = 4}, - [705] = {.lex_state = 5, .external_lex_state = 4}, - [706] = {.lex_state = 5, .external_lex_state = 4}, - [707] = {.lex_state = 5, .external_lex_state = 4}, - [708] = {.lex_state = 5, .external_lex_state = 4}, - [709] = {.lex_state = 5}, - [710] = {.lex_state = 5, .external_lex_state = 4}, - [711] = {.lex_state = 5, .external_lex_state = 4}, - [712] = {.lex_state = 5, .external_lex_state = 4}, - [713] = {.lex_state = 5, .external_lex_state = 4}, - [714] = {.lex_state = 5, .external_lex_state = 4}, - [715] = {.lex_state = 5, .external_lex_state = 4}, - [716] = {.lex_state = 5, .external_lex_state = 4}, - [717] = {.lex_state = 5, .external_lex_state = 4}, - [718] = {.lex_state = 4, .external_lex_state = 2}, - [719] = {.lex_state = 6}, - [720] = {.lex_state = 6}, - [721] = {.lex_state = 6}, - [722] = {.lex_state = 6}, - [723] = {.lex_state = 6}, - [724] = {.lex_state = 6}, - [725] = {.lex_state = 6}, - [726] = {.lex_state = 6}, - [727] = {.lex_state = 6}, - [728] = {.lex_state = 6}, - [729] = {.lex_state = 6}, - [730] = {.lex_state = 6}, - [731] = {.lex_state = 6}, - [732] = {.lex_state = 6}, - [733] = {.lex_state = 6}, - [734] = {.lex_state = 6}, - [735] = {.lex_state = 6}, - [736] = {.lex_state = 6}, - [737] = {.lex_state = 6}, - [738] = {.lex_state = 4, .external_lex_state = 2}, - [739] = {.lex_state = 6}, - [740] = {.lex_state = 6}, - [741] = {.lex_state = 6}, - [742] = {.lex_state = 4, .external_lex_state = 2}, - [743] = {.lex_state = 6}, - [744] = {.lex_state = 6}, - [745] = {.lex_state = 6}, - [746] = {.lex_state = 6}, - [747] = {.lex_state = 6}, - [748] = {.lex_state = 6}, - [749] = {.lex_state = 6}, - [750] = {.lex_state = 6}, - [751] = {.lex_state = 6}, - [752] = {.lex_state = 6}, - [753] = {.lex_state = 6}, - [754] = {.lex_state = 6}, - [755] = {.lex_state = 6}, - [756] = {.lex_state = 6, .external_lex_state = 4}, - [757] = {.lex_state = 6, .external_lex_state = 4}, - [758] = {.lex_state = 6}, - [759] = {.lex_state = 6}, - [760] = {.lex_state = 6}, - [761] = {.lex_state = 6}, - [762] = {.lex_state = 6}, - [763] = {.lex_state = 6}, - [764] = {.lex_state = 6}, - [765] = {.lex_state = 6}, - [766] = {.lex_state = 6}, - [767] = {.lex_state = 6}, - [768] = {.lex_state = 6}, - [769] = {.lex_state = 6}, - [770] = {.lex_state = 4, .external_lex_state = 2}, - [771] = {.lex_state = 6}, - [772] = {.lex_state = 6}, - [773] = {.lex_state = 6}, - [774] = {.lex_state = 6}, - [775] = {.lex_state = 6}, - [776] = {.lex_state = 6}, - [777] = {.lex_state = 6}, - [778] = {.lex_state = 6}, - [779] = {.lex_state = 6}, - [780] = {.lex_state = 6}, - [781] = {.lex_state = 4, .external_lex_state = 2}, - [782] = {.lex_state = 6}, - [783] = {.lex_state = 6}, - [784] = {.lex_state = 6}, - [785] = {.lex_state = 6}, - [786] = {.lex_state = 6}, - [787] = {.lex_state = 6}, - [788] = {.lex_state = 6}, - [789] = {.lex_state = 6}, - [790] = {.lex_state = 6}, - [791] = {.lex_state = 6}, - [792] = {.lex_state = 6}, - [793] = {.lex_state = 6}, - [794] = {.lex_state = 6}, - [795] = {.lex_state = 6}, - [796] = {.lex_state = 6}, - [797] = {.lex_state = 6}, - [798] = {.lex_state = 6}, - [799] = {.lex_state = 6}, - [800] = {.lex_state = 4, .external_lex_state = 2}, - [801] = {.lex_state = 6}, - [802] = {.lex_state = 6}, - [803] = {.lex_state = 6}, - [804] = {.lex_state = 6}, - [805] = {.lex_state = 6}, - [806] = {.lex_state = 6}, - [807] = {.lex_state = 6}, - [808] = {.lex_state = 4, .external_lex_state = 2}, - [809] = {.lex_state = 6}, - [810] = {.lex_state = 6}, - [811] = {.lex_state = 6}, - [812] = {.lex_state = 6}, - [813] = {.lex_state = 6}, - [814] = {.lex_state = 6}, - [815] = {.lex_state = 6}, - [816] = {.lex_state = 6}, - [817] = {.lex_state = 6}, - [818] = {.lex_state = 6}, - [819] = {.lex_state = 6}, - [820] = {.lex_state = 6}, - [821] = {.lex_state = 6}, - [822] = {.lex_state = 6}, - [823] = {.lex_state = 6}, - [824] = {.lex_state = 6}, - [825] = {.lex_state = 6}, - [826] = {.lex_state = 6}, - [827] = {.lex_state = 4, .external_lex_state = 2}, - [828] = {.lex_state = 6}, - [829] = {.lex_state = 6}, - [830] = {.lex_state = 6}, - [831] = {.lex_state = 6}, - [832] = {.lex_state = 6}, - [833] = {.lex_state = 6}, - [834] = {.lex_state = 6}, - [835] = {.lex_state = 6}, - [836] = {.lex_state = 6}, - [837] = {.lex_state = 6}, - [838] = {.lex_state = 6}, - [839] = {.lex_state = 6}, - [840] = {.lex_state = 6}, - [841] = {.lex_state = 6, .external_lex_state = 4}, - [842] = {.lex_state = 6, .external_lex_state = 4}, - [843] = {.lex_state = 6, .external_lex_state = 4}, - [844] = {.lex_state = 6, .external_lex_state = 4}, - [845] = {.lex_state = 6, .external_lex_state = 4}, - [846] = {.lex_state = 6, .external_lex_state = 4}, - [847] = {.lex_state = 4, .external_lex_state = 2}, - [848] = {.lex_state = 6, .external_lex_state = 4}, - [849] = {.lex_state = 6, .external_lex_state = 4}, - [850] = {.lex_state = 6, .external_lex_state = 4}, - [851] = {.lex_state = 6, .external_lex_state = 4}, - [852] = {.lex_state = 4, .external_lex_state = 2}, - [853] = {.lex_state = 86}, - [854] = {.lex_state = 4, .external_lex_state = 2}, - [855] = {.lex_state = 6, .external_lex_state = 4}, - [856] = {.lex_state = 4, .external_lex_state = 2}, - [857] = {.lex_state = 4, .external_lex_state = 2}, - [858] = {.lex_state = 6, .external_lex_state = 4}, - [859] = {.lex_state = 6, .external_lex_state = 4}, - [860] = {.lex_state = 6, .external_lex_state = 4}, - [861] = {.lex_state = 6, .external_lex_state = 4}, - [862] = {.lex_state = 6, .external_lex_state = 4}, - [863] = {.lex_state = 6, .external_lex_state = 4}, - [864] = {.lex_state = 6, .external_lex_state = 4}, - [865] = {.lex_state = 6, .external_lex_state = 4}, - [866] = {.lex_state = 6, .external_lex_state = 4}, - [867] = {.lex_state = 6, .external_lex_state = 4}, - [868] = {.lex_state = 6, .external_lex_state = 4}, - [869] = {.lex_state = 6, .external_lex_state = 4}, - [870] = {.lex_state = 4, .external_lex_state = 2}, - [871] = {.lex_state = 6, .external_lex_state = 4}, - [872] = {.lex_state = 6, .external_lex_state = 4}, - [873] = {.lex_state = 6, .external_lex_state = 4}, - [874] = {.lex_state = 6, .external_lex_state = 4}, - [875] = {.lex_state = 6, .external_lex_state = 4}, - [876] = {.lex_state = 6, .external_lex_state = 4}, - [877] = {.lex_state = 6, .external_lex_state = 4}, - [878] = {.lex_state = 6, .external_lex_state = 4}, - [879] = {.lex_state = 6, .external_lex_state = 4}, - [880] = {.lex_state = 6, .external_lex_state = 4}, - [881] = {.lex_state = 6, .external_lex_state = 4}, - [882] = {.lex_state = 6, .external_lex_state = 4}, - [883] = {.lex_state = 6, .external_lex_state = 4}, - [884] = {.lex_state = 6, .external_lex_state = 4}, - [885] = {.lex_state = 6, .external_lex_state = 4}, - [886] = {.lex_state = 6, .external_lex_state = 4}, - [887] = {.lex_state = 6, .external_lex_state = 4}, - [888] = {.lex_state = 6, .external_lex_state = 4}, - [889] = {.lex_state = 6, .external_lex_state = 4}, - [890] = {.lex_state = 6, .external_lex_state = 4}, - [891] = {.lex_state = 6, .external_lex_state = 4}, - [892] = {.lex_state = 6, .external_lex_state = 4}, - [893] = {.lex_state = 6, .external_lex_state = 4}, - [894] = {.lex_state = 4, .external_lex_state = 2}, - [895] = {.lex_state = 6, .external_lex_state = 4}, - [896] = {.lex_state = 6, .external_lex_state = 4}, - [897] = {.lex_state = 6, .external_lex_state = 4}, - [898] = {.lex_state = 6, .external_lex_state = 4}, - [899] = {.lex_state = 6, .external_lex_state = 4}, - [900] = {.lex_state = 6, .external_lex_state = 4}, - [901] = {.lex_state = 6, .external_lex_state = 4}, - [902] = {.lex_state = 6, .external_lex_state = 4}, - [903] = {.lex_state = 6, .external_lex_state = 4}, - [904] = {.lex_state = 6, .external_lex_state = 4}, - [905] = {.lex_state = 6, .external_lex_state = 4}, - [906] = {.lex_state = 6, .external_lex_state = 4}, - [907] = {.lex_state = 6, .external_lex_state = 4}, - [908] = {.lex_state = 6, .external_lex_state = 4}, - [909] = {.lex_state = 6, .external_lex_state = 4}, - [910] = {.lex_state = 4, .external_lex_state = 2}, - [911] = {.lex_state = 4, .external_lex_state = 2}, - [912] = {.lex_state = 6, .external_lex_state = 4}, - [913] = {.lex_state = 6, .external_lex_state = 4}, - [914] = {.lex_state = 6, .external_lex_state = 4}, - [915] = {.lex_state = 6, .external_lex_state = 4}, - [916] = {.lex_state = 6, .external_lex_state = 4}, - [917] = {.lex_state = 6, .external_lex_state = 4}, - [918] = {.lex_state = 6, .external_lex_state = 4}, - [919] = {.lex_state = 6, .external_lex_state = 4}, - [920] = {.lex_state = 6, .external_lex_state = 4}, - [921] = {.lex_state = 6, .external_lex_state = 4}, - [922] = {.lex_state = 4, .external_lex_state = 2}, - [923] = {.lex_state = 6, .external_lex_state = 4}, - [924] = {.lex_state = 4, .external_lex_state = 2}, - [925] = {.lex_state = 6, .external_lex_state = 4}, - [926] = {.lex_state = 6, .external_lex_state = 4}, - [927] = {.lex_state = 6, .external_lex_state = 4}, - [928] = {.lex_state = 4, .external_lex_state = 2}, - [929] = {.lex_state = 6, .external_lex_state = 4}, - [930] = {.lex_state = 86}, - [931] = {.lex_state = 86}, - [932] = {.lex_state = 6}, - [933] = {.lex_state = 6}, - [934] = {.lex_state = 6}, - [935] = {.lex_state = 6}, - [936] = {.lex_state = 6}, - [937] = {.lex_state = 6}, - [938] = {.lex_state = 6}, - [939] = {.lex_state = 6}, - [940] = {.lex_state = 6}, - [941] = {.lex_state = 6}, - [942] = {.lex_state = 6}, - [943] = {.lex_state = 6}, - [944] = {.lex_state = 6}, - [945] = {.lex_state = 6}, - [946] = {.lex_state = 6}, - [947] = {.lex_state = 6}, - [948] = {.lex_state = 86}, - [949] = {.lex_state = 6}, - [950] = {.lex_state = 6}, - [951] = {.lex_state = 6}, - [952] = {.lex_state = 6}, - [953] = {.lex_state = 86}, - [954] = {.lex_state = 6}, - [955] = {.lex_state = 6}, - [956] = {.lex_state = 6}, - [957] = {.lex_state = 86}, - [958] = {.lex_state = 6}, - [959] = {.lex_state = 6}, - [960] = {.lex_state = 6}, - [961] = {.lex_state = 6}, - [962] = {.lex_state = 6}, - [963] = {.lex_state = 6}, - [964] = {.lex_state = 6}, - [965] = {.lex_state = 6}, - [966] = {.lex_state = 6}, - [967] = {.lex_state = 6}, - [968] = {.lex_state = 6}, - [969] = {.lex_state = 6}, - [970] = {.lex_state = 6}, - [971] = {.lex_state = 6}, - [972] = {.lex_state = 6}, - [973] = {.lex_state = 6}, - [974] = {.lex_state = 86}, - [975] = {.lex_state = 6, .external_lex_state = 4}, - [976] = {.lex_state = 6}, - [977] = {.lex_state = 6, .external_lex_state = 4}, - [978] = {.lex_state = 6, .external_lex_state = 4}, - [979] = {.lex_state = 6, .external_lex_state = 4}, - [980] = {.lex_state = 6, .external_lex_state = 4}, - [981] = {.lex_state = 6}, - [982] = {.lex_state = 6}, - [983] = {.lex_state = 6}, - [984] = {.lex_state = 6}, - [985] = {.lex_state = 6}, - [986] = {.lex_state = 6}, - [987] = {.lex_state = 6}, - [988] = {.lex_state = 6, .external_lex_state = 4}, - [989] = {.lex_state = 6}, - [990] = {.lex_state = 6}, - [991] = {.lex_state = 6}, - [992] = {.lex_state = 6}, - [993] = {.lex_state = 6}, - [994] = {.lex_state = 6}, - [995] = {.lex_state = 6, .external_lex_state = 4}, - [996] = {.lex_state = 6, .external_lex_state = 4}, - [997] = {.lex_state = 6, .external_lex_state = 4}, - [998] = {.lex_state = 6, .external_lex_state = 4}, - [999] = {.lex_state = 6}, - [1000] = {.lex_state = 6, .external_lex_state = 4}, - [1001] = {.lex_state = 6}, - [1002] = {.lex_state = 6, .external_lex_state = 4}, - [1003] = {.lex_state = 6}, - [1004] = {.lex_state = 6}, - [1005] = {.lex_state = 6}, - [1006] = {.lex_state = 6}, - [1007] = {.lex_state = 6, .external_lex_state = 4}, - [1008] = {.lex_state = 6}, - [1009] = {.lex_state = 6}, - [1010] = {.lex_state = 6}, - [1011] = {.lex_state = 6}, - [1012] = {.lex_state = 6}, - [1013] = {.lex_state = 6}, - [1014] = {.lex_state = 6}, - [1015] = {.lex_state = 6}, - [1016] = {.lex_state = 6}, - [1017] = {.lex_state = 6}, - [1018] = {.lex_state = 6}, - [1019] = {.lex_state = 6}, - [1020] = {.lex_state = 6}, - [1021] = {.lex_state = 6}, - [1022] = {.lex_state = 6}, - [1023] = {.lex_state = 6}, - [1024] = {.lex_state = 6}, - [1025] = {.lex_state = 6}, - [1026] = {.lex_state = 6}, - [1027] = {.lex_state = 6}, - [1028] = {.lex_state = 6}, - [1029] = {.lex_state = 6}, - [1030] = {.lex_state = 6}, - [1031] = {.lex_state = 6}, - [1032] = {.lex_state = 6}, - [1033] = {.lex_state = 6}, - [1034] = {.lex_state = 6}, - [1035] = {.lex_state = 6}, - [1036] = {.lex_state = 6}, - [1037] = {.lex_state = 6}, - [1038] = {.lex_state = 6}, - [1039] = {.lex_state = 6}, - [1040] = {.lex_state = 6}, - [1041] = {.lex_state = 6}, - [1042] = {.lex_state = 6}, - [1043] = {.lex_state = 6}, - [1044] = {.lex_state = 6}, - [1045] = {.lex_state = 6}, - [1046] = {.lex_state = 6}, - [1047] = {.lex_state = 6}, - [1048] = {.lex_state = 6}, - [1049] = {.lex_state = 6}, - [1050] = {.lex_state = 6}, - [1051] = {.lex_state = 6}, - [1052] = {.lex_state = 6}, - [1053] = {.lex_state = 6}, - [1054] = {.lex_state = 6}, - [1055] = {.lex_state = 6}, - [1056] = {.lex_state = 6}, - [1057] = {.lex_state = 6}, - [1058] = {.lex_state = 6}, - [1059] = {.lex_state = 6}, - [1060] = {.lex_state = 6}, - [1061] = {.lex_state = 6}, - [1062] = {.lex_state = 6}, - [1063] = {.lex_state = 6}, - [1064] = {.lex_state = 6}, - [1065] = {.lex_state = 6}, - [1066] = {.lex_state = 6}, - [1067] = {.lex_state = 6}, - [1068] = {.lex_state = 6}, - [1069] = {.lex_state = 6}, - [1070] = {.lex_state = 6}, - [1071] = {.lex_state = 6}, - [1072] = {.lex_state = 6}, - [1073] = {.lex_state = 4}, - [1074] = {.lex_state = 4}, - [1075] = {.lex_state = 4}, - [1076] = {.lex_state = 4}, - [1077] = {.lex_state = 4}, - [1078] = {.lex_state = 4}, - [1079] = {.lex_state = 4}, - [1080] = {.lex_state = 4}, - [1081] = {.lex_state = 4}, - [1082] = {.lex_state = 4}, - [1083] = {.lex_state = 4}, - [1084] = {.lex_state = 4}, - [1085] = {.lex_state = 27}, - [1086] = {.lex_state = 4}, - [1087] = {.lex_state = 4}, - [1088] = {.lex_state = 4}, - [1089] = {.lex_state = 4, .external_lex_state = 2}, - [1090] = {.lex_state = 4}, - [1091] = {.lex_state = 4}, - [1092] = {.lex_state = 4}, - [1093] = {.lex_state = 4}, - [1094] = {.lex_state = 4}, - [1095] = {.lex_state = 4}, - [1096] = {.lex_state = 4}, - [1097] = {.lex_state = 4}, - [1098] = {.lex_state = 4}, - [1099] = {.lex_state = 4}, - [1100] = {.lex_state = 4}, - [1101] = {.lex_state = 4}, - [1102] = {.lex_state = 4}, - [1103] = {.lex_state = 4}, - [1104] = {.lex_state = 4}, - [1105] = {.lex_state = 4}, - [1106] = {.lex_state = 4}, - [1107] = {.lex_state = 4}, - [1108] = {.lex_state = 4}, - [1109] = {.lex_state = 4}, - [1110] = {.lex_state = 4}, - [1111] = {.lex_state = 4}, - [1112] = {.lex_state = 4}, - [1113] = {.lex_state = 4}, - [1114] = {.lex_state = 4}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 4}, - [1117] = {.lex_state = 4}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 4}, - [1121] = {.lex_state = 4}, - [1122] = {.lex_state = 4}, - [1123] = {.lex_state = 4}, - [1124] = {.lex_state = 4}, - [1125] = {.lex_state = 4}, - [1126] = {.lex_state = 4}, - [1127] = {.lex_state = 4}, - [1128] = {.lex_state = 4}, - [1129] = {.lex_state = 4}, - [1130] = {.lex_state = 4}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 4}, - [1133] = {.lex_state = 0}, - [1134] = {.lex_state = 4}, - [1135] = {.lex_state = 4}, - [1136] = {.lex_state = 4}, - [1137] = {.lex_state = 4}, - [1138] = {.lex_state = 4}, - [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 4}, - [1141] = {.lex_state = 4}, - [1142] = {.lex_state = 4}, - [1143] = {.lex_state = 4}, - [1144] = {.lex_state = 4}, - [1145] = {.lex_state = 4}, - [1146] = {.lex_state = 4}, - [1147] = {.lex_state = 4}, - [1148] = {.lex_state = 4}, - [1149] = {.lex_state = 4}, - [1150] = {.lex_state = 4}, - [1151] = {.lex_state = 4}, - [1152] = {.lex_state = 4}, - [1153] = {.lex_state = 4}, - [1154] = {.lex_state = 4}, - [1155] = {.lex_state = 4}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 4}, - [1159] = {.lex_state = 4}, - [1160] = {.lex_state = 4}, - [1161] = {.lex_state = 4}, - [1162] = {.lex_state = 4}, - [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 4}, - [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 4}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 4}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 7, .external_lex_state = 2}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 4}, - [1183] = {.lex_state = 4}, - [1184] = {.lex_state = 4}, - [1185] = {.lex_state = 4}, - [1186] = {.lex_state = 0, .external_lex_state = 4}, - [1187] = {.lex_state = 4}, - [1188] = {.lex_state = 4}, - [1189] = {.lex_state = 4}, - [1190] = {.lex_state = 4}, - [1191] = {.lex_state = 4}, - [1192] = {.lex_state = 4}, - [1193] = {.lex_state = 4}, - [1194] = {.lex_state = 4}, - [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 4}, - [1197] = {.lex_state = 4}, - [1198] = {.lex_state = 4}, - [1199] = {.lex_state = 4}, - [1200] = {.lex_state = 4}, - [1201] = {.lex_state = 4}, - [1202] = {.lex_state = 4}, - [1203] = {.lex_state = 4}, - [1204] = {.lex_state = 4}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 4}, - [1208] = {.lex_state = 4}, - [1209] = {.lex_state = 87, .external_lex_state = 5}, - [1210] = {.lex_state = 4}, - [1211] = {.lex_state = 4}, - [1212] = {.lex_state = 4}, - [1213] = {.lex_state = 4}, - [1214] = {.lex_state = 4}, - [1215] = {.lex_state = 4}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 4}, - [1218] = {.lex_state = 4}, - [1219] = {.lex_state = 0, .external_lex_state = 4}, - [1220] = {.lex_state = 4}, - [1221] = {.lex_state = 4}, - [1222] = {.lex_state = 4}, - [1223] = {.lex_state = 4}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 4}, - [1228] = {.lex_state = 4}, - [1229] = {.lex_state = 4}, - [1230] = {.lex_state = 4}, - [1231] = {.lex_state = 4}, - [1232] = {.lex_state = 4}, - [1233] = {.lex_state = 4}, - [1234] = {.lex_state = 0, .external_lex_state = 4}, - [1235] = {.lex_state = 4}, - [1236] = {.lex_state = 4}, - [1237] = {.lex_state = 4, .external_lex_state = 4}, - [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 4}, - [1240] = {.lex_state = 4}, - [1241] = {.lex_state = 4, .external_lex_state = 4}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 4}, - [1244] = {.lex_state = 0, .external_lex_state = 4}, - [1245] = {.lex_state = 0, .external_lex_state = 4}, - [1246] = {.lex_state = 4}, - [1247] = {.lex_state = 4, .external_lex_state = 4}, - [1248] = {.lex_state = 0, .external_lex_state = 4}, - [1249] = {.lex_state = 87}, - [1250] = {.lex_state = 4}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0, .external_lex_state = 4}, - [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 4}, - [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 4}, - [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 4}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 4}, - [1263] = {.lex_state = 4, .external_lex_state = 4}, - [1264] = {.lex_state = 4, .external_lex_state = 4}, - [1265] = {.lex_state = 4}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 0, .external_lex_state = 4}, - [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 4}, - [1270] = {.lex_state = 0, .external_lex_state = 4}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 4}, - [1273] = {.lex_state = 4}, - [1274] = {.lex_state = 4}, - [1275] = {.lex_state = 4}, - [1276] = {.lex_state = 4, .external_lex_state = 4}, - [1277] = {.lex_state = 4}, - [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 4}, - [1280] = {.lex_state = 4}, - [1281] = {.lex_state = 4, .external_lex_state = 4}, - [1282] = {.lex_state = 4}, - [1283] = {.lex_state = 4}, - [1284] = {.lex_state = 4}, - [1285] = {.lex_state = 4}, - [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 4}, - [1288] = {.lex_state = 0, .external_lex_state = 4}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0, .external_lex_state = 4}, - [1291] = {.lex_state = 4}, - [1292] = {.lex_state = 4}, - [1293] = {.lex_state = 0, .external_lex_state = 4}, - [1294] = {.lex_state = 0, .external_lex_state = 4}, - [1295] = {.lex_state = 4}, - [1296] = {.lex_state = 0, .external_lex_state = 4}, - [1297] = {.lex_state = 4}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 4}, - [1300] = {.lex_state = 4}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 87}, - [1303] = {.lex_state = 87, .external_lex_state = 5}, - [1304] = {.lex_state = 87, .external_lex_state = 5}, - [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0, .external_lex_state = 4}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 4}, - [1309] = {.lex_state = 0, .external_lex_state = 4}, - [1310] = {.lex_state = 4}, - [1311] = {.lex_state = 0, .external_lex_state = 4}, - [1312] = {.lex_state = 0, .external_lex_state = 4}, - [1313] = {.lex_state = 4}, - [1314] = {.lex_state = 4}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 0, .external_lex_state = 4}, - [1319] = {.lex_state = 0, .external_lex_state = 4}, - [1320] = {.lex_state = 4}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 0, .external_lex_state = 4}, - [1323] = {.lex_state = 0, .external_lex_state = 4}, - [1324] = {.lex_state = 4}, - [1325] = {.lex_state = 0, .external_lex_state = 4}, - [1326] = {.lex_state = 87, .external_lex_state = 5}, - [1327] = {.lex_state = 0, .external_lex_state = 4}, - [1328] = {.lex_state = 0, .external_lex_state = 4}, - [1329] = {.lex_state = 0, .external_lex_state = 4}, - [1330] = {.lex_state = 4}, - [1331] = {.lex_state = 4}, - [1332] = {.lex_state = 0, .external_lex_state = 4}, - [1333] = {.lex_state = 0, .external_lex_state = 4}, - [1334] = {.lex_state = 0, .external_lex_state = 4}, - [1335] = {.lex_state = 0, .external_lex_state = 4}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 0, .external_lex_state = 4}, - [1339] = {.lex_state = 4}, - [1340] = {.lex_state = 0, .external_lex_state = 4}, - [1341] = {.lex_state = 0, .external_lex_state = 4}, - [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 0, .external_lex_state = 4}, - [1344] = {.lex_state = 4}, - [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 4}, - [1347] = {.lex_state = 0, .external_lex_state = 4}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 4}, - [1350] = {.lex_state = 0, .external_lex_state = 4}, - [1351] = {.lex_state = 0, .external_lex_state = 4}, - [1352] = {.lex_state = 4}, - [1353] = {.lex_state = 0, .external_lex_state = 4}, - [1354] = {.lex_state = 4}, - [1355] = {.lex_state = 4}, - [1356] = {.lex_state = 4}, - [1357] = {.lex_state = 0, .external_lex_state = 4}, - [1358] = {.lex_state = 4}, - [1359] = {.lex_state = 0, .external_lex_state = 4}, - [1360] = {.lex_state = 0, .external_lex_state = 4}, - [1361] = {.lex_state = 0, .external_lex_state = 4}, - [1362] = {.lex_state = 0, .external_lex_state = 4}, - [1363] = {.lex_state = 0, .external_lex_state = 4}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0, .external_lex_state = 4}, - [1366] = {.lex_state = 0, .external_lex_state = 4}, - [1367] = {.lex_state = 0, .external_lex_state = 4}, - [1368] = {.lex_state = 4}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 0, .external_lex_state = 4}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 0, .external_lex_state = 4}, - [1374] = {.lex_state = 0, .external_lex_state = 4}, - [1375] = {.lex_state = 0, .external_lex_state = 4}, - [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 4}, - [1378] = {.lex_state = 4}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 4}, - [1385] = {.lex_state = 87}, - [1386] = {.lex_state = 0, .external_lex_state = 4}, - [1387] = {.lex_state = 4}, - [1388] = {.lex_state = 0, .external_lex_state = 4}, - [1389] = {.lex_state = 4}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 4}, - [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 4}, - [1394] = {.lex_state = 0, .external_lex_state = 4}, - [1395] = {.lex_state = 4}, - [1396] = {.lex_state = 4}, - [1397] = {.lex_state = 0, .external_lex_state = 4}, - [1398] = {.lex_state = 0, .external_lex_state = 4}, - [1399] = {.lex_state = 0, .external_lex_state = 4}, - [1400] = {.lex_state = 0, .external_lex_state = 4}, - [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 0, .external_lex_state = 4}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 0, .external_lex_state = 4}, - [1406] = {.lex_state = 4}, - [1407] = {.lex_state = 0, .external_lex_state = 4}, - [1408] = {.lex_state = 0, .external_lex_state = 4}, - [1409] = {.lex_state = 4}, - [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 4}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 4}, - [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 0}, - [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 4}, - [1423] = {.lex_state = 0, .external_lex_state = 4}, - [1424] = {.lex_state = 4}, - [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 0, .external_lex_state = 4}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 0}, - [1432] = {.lex_state = 0, .external_lex_state = 4}, - [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 4}, - [1436] = {.lex_state = 4}, - [1437] = {.lex_state = 0, .external_lex_state = 4}, - [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 4}, - [1440] = {.lex_state = 0, .external_lex_state = 4}, - [1441] = {.lex_state = 4}, - [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 4}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 0}, - [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 4}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 4}, - [1458] = {.lex_state = 4}, - [1459] = {.lex_state = 0, .external_lex_state = 4}, - [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 4}, - [1462] = {.lex_state = 4}, - [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 0}, - [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 4}, - [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 4}, - [1470] = {.lex_state = 4}, - [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 0}, - [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 4}, - [1476] = {.lex_state = 4}, - [1477] = {.lex_state = 4}, - [1478] = {.lex_state = 4}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 4}, - [1482] = {.lex_state = 0}, - [1483] = {.lex_state = 4}, - [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 4}, - [1486] = {.lex_state = 0, .external_lex_state = 4}, - [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 4}, - [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 4}, - [1491] = {.lex_state = 0}, - [1492] = {.lex_state = 4}, - [1493] = {.lex_state = 0, .external_lex_state = 4}, - [1494] = {.lex_state = 4}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 4}, - [1497] = {.lex_state = 4}, - [1498] = {.lex_state = 0}, - [1499] = {.lex_state = 4}, - [1500] = {.lex_state = 4}, - [1501] = {.lex_state = 4}, - [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 0, .external_lex_state = 4}, - [1506] = {.lex_state = 4, .external_lex_state = 4}, - [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 4}, - [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 4}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 4}, - [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 4}, - [1516] = {.lex_state = 0}, - [1517] = {.lex_state = 0, .external_lex_state = 4}, - [1518] = {.lex_state = 4}, - [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 0, .external_lex_state = 4}, - [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 4}, - [1523] = {.lex_state = 4}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 4}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 4}, - [1535] = {.lex_state = 0}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 4}, - [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 4}, - [1542] = {.lex_state = 4}, - [1543] = {.lex_state = 0}, - [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 4}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 0, .external_lex_state = 4}, - [1549] = {.lex_state = 4}, - [1550] = {.lex_state = 4}, - [1551] = {.lex_state = 4}, - [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 4}, - [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 4}, - [1561] = {.lex_state = 4}, - [1562] = {.lex_state = 4}, - [1563] = {.lex_state = 4}, - [1564] = {.lex_state = 4}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 4}, - [1567] = {.lex_state = 4}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 4}, - [1570] = {.lex_state = 4}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 4}, - [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 4}, - [1579] = {.lex_state = 4}, - [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 0}, - [1582] = {.lex_state = 4}, - [1583] = {.lex_state = 4}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 4}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 4}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 4}, - [1591] = {.lex_state = 4}, - [1592] = {.lex_state = 4}, - [1593] = {.lex_state = 4, .external_lex_state = 4}, - [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 4}, - [1598] = {.lex_state = 4}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 4}, - [1601] = {.lex_state = 4}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 4}, - [1606] = {.lex_state = 4}, - [1607] = {.lex_state = 0}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 4}, - [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 0}, - [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 4}, - [1617] = {.lex_state = 4}, - [1618] = {.lex_state = 4}, - [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 4}, - [1623] = {.lex_state = 0, .external_lex_state = 4}, - [1624] = {.lex_state = 0}, + [667] = {.lex_state = 3, .external_lex_state = 4}, + [668] = {.lex_state = 5}, + [669] = {.lex_state = 4, .external_lex_state = 4}, + [670] = {.lex_state = 5}, + [671] = {.lex_state = 4, .external_lex_state = 4}, + [672] = {.lex_state = 4, .external_lex_state = 4}, + [673] = {.lex_state = 4, .external_lex_state = 4}, + [674] = {.lex_state = 4, .external_lex_state = 4}, + [675] = {.lex_state = 4, .external_lex_state = 4}, + [676] = {.lex_state = 4, .external_lex_state = 4}, + [677] = {.lex_state = 4, .external_lex_state = 4}, + [678] = {.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 = 5}, + [686] = {.lex_state = 4, .external_lex_state = 4}, + [687] = {.lex_state = 4, .external_lex_state = 4}, + [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 = 3, .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 = 4, .external_lex_state = 4}, + [696] = {.lex_state = 4, .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 = 4, .external_lex_state = 4}, + [702] = {.lex_state = 4, .external_lex_state = 4}, + [703] = {.lex_state = 4, .external_lex_state = 4}, + [704] = {.lex_state = 4, .external_lex_state = 4}, + [705] = {.lex_state = 3, .external_lex_state = 4}, + [706] = {.lex_state = 5}, + [707] = {.lex_state = 4, .external_lex_state = 4}, + [708] = {.lex_state = 4, .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 = 4, .external_lex_state = 4}, + [714] = {.lex_state = 4, .external_lex_state = 4}, + [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 = 4, .external_lex_state = 4}, + [720] = {.lex_state = 4, .external_lex_state = 4}, + [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, .external_lex_state = 4}, + [726] = {.lex_state = 4, .external_lex_state = 4}, + [727] = {.lex_state = 4, .external_lex_state = 4}, + [728] = {.lex_state = 4}, + [729] = {.lex_state = 4}, + [730] = {.lex_state = 4, .external_lex_state = 4}, + [731] = {.lex_state = 4, .external_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, .external_lex_state = 4}, + [737] = {.lex_state = 5}, + [738] = {.lex_state = 3, .external_lex_state = 2}, + [739] = {.lex_state = 5}, + [740] = {.lex_state = 5}, + [741] = {.lex_state = 5}, + [742] = {.lex_state = 5}, + [743] = {.lex_state = 5}, + [744] = {.lex_state = 5}, + [745] = {.lex_state = 5}, + [746] = {.lex_state = 5}, + [747] = {.lex_state = 5}, + [748] = {.lex_state = 5}, + [749] = {.lex_state = 5}, + [750] = {.lex_state = 5}, + [751] = {.lex_state = 5}, + [752] = {.lex_state = 5}, + [753] = {.lex_state = 5}, + [754] = {.lex_state = 5}, + [755] = {.lex_state = 5}, + [756] = {.lex_state = 5}, + [757] = {.lex_state = 5}, + [758] = {.lex_state = 5}, + [759] = {.lex_state = 5}, + [760] = {.lex_state = 3, .external_lex_state = 2}, + [761] = {.lex_state = 3, .external_lex_state = 2}, + [762] = {.lex_state = 5}, + [763] = {.lex_state = 5}, + [764] = {.lex_state = 5}, + [765] = {.lex_state = 5}, + [766] = {.lex_state = 5}, + [767] = {.lex_state = 5}, + [768] = {.lex_state = 5}, + [769] = {.lex_state = 5}, + [770] = {.lex_state = 5}, + [771] = {.lex_state = 5}, + [772] = {.lex_state = 5}, + [773] = {.lex_state = 5}, + [774] = {.lex_state = 5}, + [775] = {.lex_state = 5, .external_lex_state = 4}, + [776] = {.lex_state = 5, .external_lex_state = 4}, + [777] = {.lex_state = 26}, + [778] = {.lex_state = 26}, + [779] = {.lex_state = 5}, + [780] = {.lex_state = 5}, + [781] = {.lex_state = 5}, + [782] = {.lex_state = 5}, + [783] = {.lex_state = 5}, + [784] = {.lex_state = 5}, + [785] = {.lex_state = 5}, + [786] = {.lex_state = 5}, + [787] = {.lex_state = 5}, + [788] = {.lex_state = 5}, + [789] = {.lex_state = 5}, + [790] = {.lex_state = 5}, + [791] = {.lex_state = 5}, + [792] = {.lex_state = 5}, + [793] = {.lex_state = 5}, + [794] = {.lex_state = 5}, + [795] = {.lex_state = 5}, + [796] = {.lex_state = 3, .external_lex_state = 2}, + [797] = {.lex_state = 5}, + [798] = {.lex_state = 5}, + [799] = {.lex_state = 3, .external_lex_state = 2}, + [800] = {.lex_state = 5}, + [801] = {.lex_state = 5}, + [802] = {.lex_state = 5}, + [803] = {.lex_state = 5}, + [804] = {.lex_state = 5}, + [805] = {.lex_state = 26}, + [806] = {.lex_state = 5}, + [807] = {.lex_state = 5}, + [808] = {.lex_state = 5}, + [809] = {.lex_state = 5}, + [810] = {.lex_state = 26}, + [811] = {.lex_state = 5}, + [812] = {.lex_state = 5}, + [813] = {.lex_state = 5}, + [814] = {.lex_state = 5}, + [815] = {.lex_state = 5}, + [816] = {.lex_state = 5}, + [817] = {.lex_state = 26}, + [818] = {.lex_state = 5}, + [819] = {.lex_state = 5}, + [820] = {.lex_state = 5}, + [821] = {.lex_state = 26}, + [822] = {.lex_state = 5}, + [823] = {.lex_state = 5}, + [824] = {.lex_state = 5}, + [825] = {.lex_state = 5}, + [826] = {.lex_state = 5}, + [827] = {.lex_state = 3, .external_lex_state = 2}, + [828] = {.lex_state = 5}, + [829] = {.lex_state = 5}, + [830] = {.lex_state = 5}, + [831] = {.lex_state = 5}, + [832] = {.lex_state = 5}, + [833] = {.lex_state = 5}, + [834] = {.lex_state = 26}, + [835] = {.lex_state = 5}, + [836] = {.lex_state = 5}, + [837] = {.lex_state = 5}, + [838] = {.lex_state = 5}, + [839] = {.lex_state = 5}, + [840] = {.lex_state = 5}, + [841] = {.lex_state = 5}, + [842] = {.lex_state = 3, .external_lex_state = 2}, + [843] = {.lex_state = 5}, + [844] = {.lex_state = 5}, + [845] = {.lex_state = 5}, + [846] = {.lex_state = 5}, + [847] = {.lex_state = 5}, + [848] = {.lex_state = 5}, + [849] = {.lex_state = 5}, + [850] = {.lex_state = 5}, + [851] = {.lex_state = 5}, + [852] = {.lex_state = 5}, + [853] = {.lex_state = 5}, + [854] = {.lex_state = 5}, + [855] = {.lex_state = 5}, + [856] = {.lex_state = 3, .external_lex_state = 2}, + [857] = {.lex_state = 5}, + [858] = {.lex_state = 5}, + [859] = {.lex_state = 5}, + [860] = {.lex_state = 5}, + [861] = {.lex_state = 5}, + [862] = {.lex_state = 5}, + [863] = {.lex_state = 5}, + [864] = {.lex_state = 5}, + [865] = {.lex_state = 5}, + [866] = {.lex_state = 5}, + [867] = {.lex_state = 5, .external_lex_state = 4}, + [868] = {.lex_state = 5, .external_lex_state = 4}, + [869] = {.lex_state = 5, .external_lex_state = 4}, + [870] = {.lex_state = 5, .external_lex_state = 4}, + [871] = {.lex_state = 5, .external_lex_state = 4}, + [872] = {.lex_state = 5, .external_lex_state = 4}, + [873] = {.lex_state = 3, .external_lex_state = 2}, + [874] = {.lex_state = 5, .external_lex_state = 4}, + [875] = {.lex_state = 5, .external_lex_state = 4}, + [876] = {.lex_state = 5, .external_lex_state = 4}, + [877] = {.lex_state = 5, .external_lex_state = 4}, + [878] = {.lex_state = 5, .external_lex_state = 4}, + [879] = {.lex_state = 5, .external_lex_state = 4}, + [880] = {.lex_state = 5, .external_lex_state = 4}, + [881] = {.lex_state = 5, .external_lex_state = 4}, + [882] = {.lex_state = 5, .external_lex_state = 4}, + [883] = {.lex_state = 5, .external_lex_state = 4}, + [884] = {.lex_state = 5, .external_lex_state = 4}, + [885] = {.lex_state = 3, .external_lex_state = 2}, + [886] = {.lex_state = 5, .external_lex_state = 4}, + [887] = {.lex_state = 5, .external_lex_state = 4}, + [888] = {.lex_state = 5, .external_lex_state = 4}, + [889] = {.lex_state = 5, .external_lex_state = 4}, + [890] = {.lex_state = 3, .external_lex_state = 2}, + [891] = {.lex_state = 5, .external_lex_state = 4}, + [892] = {.lex_state = 3, .external_lex_state = 2}, + [893] = {.lex_state = 5, .external_lex_state = 4}, + [894] = {.lex_state = 5, .external_lex_state = 4}, + [895] = {.lex_state = 3, .external_lex_state = 2}, + [896] = {.lex_state = 5, .external_lex_state = 4}, + [897] = {.lex_state = 5, .external_lex_state = 4}, + [898] = {.lex_state = 5, .external_lex_state = 4}, + [899] = {.lex_state = 5, .external_lex_state = 4}, + [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}, + [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 = 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 = 3, .external_lex_state = 2}, + [912] = {.lex_state = 5, .external_lex_state = 4}, + [913] = {.lex_state = 5, .external_lex_state = 4}, + [914] = {.lex_state = 3, .external_lex_state = 2}, + [915] = {.lex_state = 5, .external_lex_state = 4}, + [916] = {.lex_state = 3, .external_lex_state = 2}, + [917] = {.lex_state = 5, .external_lex_state = 4}, + [918] = {.lex_state = 5, .external_lex_state = 4}, + [919] = {.lex_state = 5, .external_lex_state = 4}, + [920] = {.lex_state = 5, .external_lex_state = 4}, + [921] = {.lex_state = 5, .external_lex_state = 4}, + [922] = {.lex_state = 3, .external_lex_state = 2}, + [923] = {.lex_state = 5, .external_lex_state = 4}, + [924] = {.lex_state = 5, .external_lex_state = 4}, + [925] = {.lex_state = 3, .external_lex_state = 2}, + [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 = 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 = 3, .external_lex_state = 2}, + [938] = {.lex_state = 5, .external_lex_state = 4}, + [939] = {.lex_state = 5, .external_lex_state = 4}, + [940] = {.lex_state = 5, .external_lex_state = 4}, + [941] = {.lex_state = 5, .external_lex_state = 4}, + [942] = {.lex_state = 5, .external_lex_state = 4}, + [943] = {.lex_state = 5, .external_lex_state = 4}, + [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 = 3, .external_lex_state = 2}, + [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}, + [953] = {.lex_state = 5, .external_lex_state = 4}, + [954] = {.lex_state = 5, .external_lex_state = 4}, + [955] = {.lex_state = 5}, + [956] = {.lex_state = 5}, + [957] = {.lex_state = 5}, + [958] = {.lex_state = 5}, + [959] = {.lex_state = 5}, + [960] = {.lex_state = 5}, + [961] = {.lex_state = 5}, + [962] = {.lex_state = 5}, + [963] = {.lex_state = 5}, + [964] = {.lex_state = 5}, + [965] = {.lex_state = 5}, + [966] = {.lex_state = 5}, + [967] = {.lex_state = 5}, + [968] = {.lex_state = 5}, + [969] = {.lex_state = 5}, + [970] = {.lex_state = 5}, + [971] = {.lex_state = 5}, + [972] = {.lex_state = 5}, + [973] = {.lex_state = 5}, + [974] = {.lex_state = 5}, + [975] = {.lex_state = 5}, + [976] = {.lex_state = 5}, + [977] = {.lex_state = 5}, + [978] = {.lex_state = 5}, + [979] = {.lex_state = 5}, + [980] = {.lex_state = 5}, + [981] = {.lex_state = 5}, + [982] = {.lex_state = 5}, + [983] = {.lex_state = 5}, + [984] = {.lex_state = 5}, + [985] = {.lex_state = 5}, + [986] = {.lex_state = 5}, + [987] = {.lex_state = 5}, + [988] = {.lex_state = 5}, + [989] = {.lex_state = 5}, + [990] = {.lex_state = 5}, + [991] = {.lex_state = 5}, + [992] = {.lex_state = 5}, + [993] = {.lex_state = 5}, + [994] = {.lex_state = 5}, + [995] = {.lex_state = 26}, + [996] = {.lex_state = 5, .external_lex_state = 4}, + [997] = {.lex_state = 5}, + [998] = {.lex_state = 5, .external_lex_state = 4}, + [999] = {.lex_state = 5, .external_lex_state = 4}, + [1000] = {.lex_state = 5, .external_lex_state = 4}, + [1001] = {.lex_state = 26}, + [1002] = {.lex_state = 5, .external_lex_state = 4}, + [1003] = {.lex_state = 5}, + [1004] = {.lex_state = 5, .external_lex_state = 4}, + [1005] = {.lex_state = 26}, + [1006] = {.lex_state = 5}, + [1007] = {.lex_state = 5}, + [1008] = {.lex_state = 26}, + [1009] = {.lex_state = 5, .external_lex_state = 4}, + [1010] = {.lex_state = 5}, + [1011] = {.lex_state = 5}, + [1012] = {.lex_state = 5}, + [1013] = {.lex_state = 5}, + [1014] = {.lex_state = 5}, + [1015] = {.lex_state = 5}, + [1016] = {.lex_state = 5}, + [1017] = {.lex_state = 5}, + [1018] = {.lex_state = 5, .external_lex_state = 4}, + [1019] = {.lex_state = 5}, + [1020] = {.lex_state = 5}, + [1021] = {.lex_state = 5}, + [1022] = {.lex_state = 5}, + [1023] = {.lex_state = 5, .external_lex_state = 4}, + [1024] = {.lex_state = 88}, + [1025] = {.lex_state = 5}, + [1026] = {.lex_state = 5}, + [1027] = {.lex_state = 5}, + [1028] = {.lex_state = 5}, + [1029] = {.lex_state = 5, .external_lex_state = 4}, + [1030] = {.lex_state = 5}, + [1031] = {.lex_state = 5}, + [1032] = {.lex_state = 5, .external_lex_state = 4}, + [1033] = {.lex_state = 5}, + [1034] = {.lex_state = 5}, + [1035] = {.lex_state = 5, .external_lex_state = 4}, + [1036] = {.lex_state = 5, .external_lex_state = 4}, + [1037] = {.lex_state = 5}, + [1038] = {.lex_state = 5}, + [1039] = {.lex_state = 5}, + [1040] = {.lex_state = 5}, + [1041] = {.lex_state = 5}, + [1042] = {.lex_state = 5}, + [1043] = {.lex_state = 5}, + [1044] = {.lex_state = 5}, + [1045] = {.lex_state = 5}, + [1046] = {.lex_state = 5}, + [1047] = {.lex_state = 5}, + [1048] = {.lex_state = 5}, + [1049] = {.lex_state = 5}, + [1050] = {.lex_state = 5}, + [1051] = {.lex_state = 5}, + [1052] = {.lex_state = 5}, + [1053] = {.lex_state = 5}, + [1054] = {.lex_state = 5}, + [1055] = {.lex_state = 5}, + [1056] = {.lex_state = 5}, + [1057] = {.lex_state = 5}, + [1058] = {.lex_state = 5}, + [1059] = {.lex_state = 5}, + [1060] = {.lex_state = 5}, + [1061] = {.lex_state = 5}, + [1062] = {.lex_state = 5}, + [1063] = {.lex_state = 5}, + [1064] = {.lex_state = 5}, + [1065] = {.lex_state = 5}, + [1066] = {.lex_state = 5}, + [1067] = {.lex_state = 5}, + [1068] = {.lex_state = 5}, + [1069] = {.lex_state = 5}, + [1070] = {.lex_state = 5}, + [1071] = {.lex_state = 5}, + [1072] = {.lex_state = 5}, + [1073] = {.lex_state = 5}, + [1074] = {.lex_state = 5}, + [1075] = {.lex_state = 5}, + [1076] = {.lex_state = 5}, + [1077] = {.lex_state = 5}, + [1078] = {.lex_state = 5}, + [1079] = {.lex_state = 5}, + [1080] = {.lex_state = 5}, + [1081] = {.lex_state = 5}, + [1082] = {.lex_state = 5}, + [1083] = {.lex_state = 5}, + [1084] = {.lex_state = 5}, + [1085] = {.lex_state = 5}, + [1086] = {.lex_state = 5}, + [1087] = {.lex_state = 5}, + [1088] = {.lex_state = 5}, + [1089] = {.lex_state = 26}, + [1090] = {.lex_state = 26}, + [1091] = {.lex_state = 26}, + [1092] = {.lex_state = 26}, + [1093] = {.lex_state = 26}, + [1094] = {.lex_state = 26}, + [1095] = {.lex_state = 26}, + [1096] = {.lex_state = 26}, + [1097] = {.lex_state = 26}, + [1098] = {.lex_state = 5}, + [1099] = {.lex_state = 5}, + [1100] = {.lex_state = 5}, + [1101] = {.lex_state = 5}, + [1102] = {.lex_state = 5}, + [1103] = {.lex_state = 5}, + [1104] = {.lex_state = 5}, + [1105] = {.lex_state = 5}, + [1106] = {.lex_state = 5}, + [1107] = {.lex_state = 5}, + [1108] = {.lex_state = 5}, + [1109] = {.lex_state = 5}, + [1110] = {.lex_state = 3}, + [1111] = {.lex_state = 3}, + [1112] = {.lex_state = 3}, + [1113] = {.lex_state = 27}, + [1114] = {.lex_state = 3}, + [1115] = {.lex_state = 3, .external_lex_state = 2}, + [1116] = {.lex_state = 3}, + [1117] = {.lex_state = 3}, + [1118] = {.lex_state = 26}, + [1119] = {.lex_state = 26}, + [1120] = {.lex_state = 26}, + [1121] = {.lex_state = 26}, + [1122] = {.lex_state = 26}, + [1123] = {.lex_state = 26}, + [1124] = {.lex_state = 26}, + [1125] = {.lex_state = 26}, + [1126] = {.lex_state = 26}, + [1127] = {.lex_state = 26}, + [1128] = {.lex_state = 26}, + [1129] = {.lex_state = 26}, + [1130] = {.lex_state = 26}, + [1131] = {.lex_state = 26}, + [1132] = {.lex_state = 26}, + [1133] = {.lex_state = 26}, + [1134] = {.lex_state = 26}, + [1135] = {.lex_state = 26}, + [1136] = {.lex_state = 26}, + [1137] = {.lex_state = 26}, + [1138] = {.lex_state = 26}, + [1139] = {.lex_state = 26}, + [1140] = {.lex_state = 26}, + [1141] = {.lex_state = 26}, + [1142] = {.lex_state = 26}, + [1143] = {.lex_state = 26}, + [1144] = {.lex_state = 26}, + [1145] = {.lex_state = 26}, + [1146] = {.lex_state = 26}, + [1147] = {.lex_state = 26}, + [1148] = {.lex_state = 26}, + [1149] = {.lex_state = 26}, + [1150] = {.lex_state = 26}, + [1151] = {.lex_state = 26}, + [1152] = {.lex_state = 3}, + [1153] = {.lex_state = 3}, + [1154] = {.lex_state = 3}, + [1155] = {.lex_state = 3}, + [1156] = {.lex_state = 3}, + [1157] = {.lex_state = 3}, + [1158] = {.lex_state = 3}, + [1159] = {.lex_state = 3}, + [1160] = {.lex_state = 3}, + [1161] = {.lex_state = 3}, + [1162] = {.lex_state = 3}, + [1163] = {.lex_state = 3}, + [1164] = {.lex_state = 3}, + [1165] = {.lex_state = 3}, + [1166] = {.lex_state = 3}, + [1167] = {.lex_state = 3}, + [1168] = {.lex_state = 3}, + [1169] = {.lex_state = 3}, + [1170] = {.lex_state = 3}, + [1171] = {.lex_state = 3}, + [1172] = {.lex_state = 3}, + [1173] = {.lex_state = 3}, + [1174] = {.lex_state = 3}, + [1175] = {.lex_state = 3}, + [1176] = {.lex_state = 3}, + [1177] = {.lex_state = 3}, + [1178] = {.lex_state = 3}, + [1179] = {.lex_state = 3}, + [1180] = {.lex_state = 3}, + [1181] = {.lex_state = 3}, + [1182] = {.lex_state = 3}, + [1183] = {.lex_state = 3}, + [1184] = {.lex_state = 3}, + [1185] = {.lex_state = 3}, + [1186] = {.lex_state = 3}, + [1187] = {.lex_state = 3}, + [1188] = {.lex_state = 3}, + [1189] = {.lex_state = 3}, + [1190] = {.lex_state = 3}, + [1191] = {.lex_state = 3}, + [1192] = {.lex_state = 3}, + [1193] = {.lex_state = 3}, + [1194] = {.lex_state = 3}, + [1195] = {.lex_state = 3}, + [1196] = {.lex_state = 3}, + [1197] = {.lex_state = 3}, + [1198] = {.lex_state = 3}, + [1199] = {.lex_state = 3}, + [1200] = {.lex_state = 3}, + [1201] = {.lex_state = 3}, + [1202] = {.lex_state = 3}, + [1203] = {.lex_state = 3}, + [1204] = {.lex_state = 3}, + [1205] = {.lex_state = 3}, + [1206] = {.lex_state = 3}, + [1207] = {.lex_state = 3}, + [1208] = {.lex_state = 3}, + [1209] = {.lex_state = 3}, + [1210] = {.lex_state = 3}, + [1211] = {.lex_state = 3}, + [1212] = {.lex_state = 3}, + [1213] = {.lex_state = 3}, + [1214] = {.lex_state = 3}, + [1215] = {.lex_state = 3}, + [1216] = {.lex_state = 3}, + [1217] = {.lex_state = 3}, + [1218] = {.lex_state = 3}, + [1219] = {.lex_state = 3}, + [1220] = {.lex_state = 3}, + [1221] = {.lex_state = 3}, + [1222] = {.lex_state = 3}, + [1223] = {.lex_state = 3}, + [1224] = {.lex_state = 6, .external_lex_state = 2}, + [1225] = {.lex_state = 3}, + [1226] = {.lex_state = 3}, + [1227] = {.lex_state = 3}, + [1228] = {.lex_state = 3}, + [1229] = {.lex_state = 3}, + [1230] = {.lex_state = 3}, + [1231] = {.lex_state = 3}, + [1232] = {.lex_state = 3}, + [1233] = {.lex_state = 3}, + [1234] = {.lex_state = 3}, + [1235] = {.lex_state = 3}, + [1236] = {.lex_state = 3}, + [1237] = {.lex_state = 3}, + [1238] = {.lex_state = 3}, + [1239] = {.lex_state = 3}, + [1240] = {.lex_state = 86}, + [1241] = {.lex_state = 86}, + [1242] = {.lex_state = 3}, + [1243] = {.lex_state = 3}, + [1244] = {.lex_state = 3}, + [1245] = {.lex_state = 86}, + [1246] = {.lex_state = 3}, + [1247] = {.lex_state = 3}, + [1248] = {.lex_state = 3}, + [1249] = {.lex_state = 3}, + [1250] = {.lex_state = 3}, + [1251] = {.lex_state = 3}, + [1252] = {.lex_state = 3}, + [1253] = {.lex_state = 3}, + [1254] = {.lex_state = 3}, + [1255] = {.lex_state = 3}, + [1256] = {.lex_state = 3}, + [1257] = {.lex_state = 3}, + [1258] = {.lex_state = 3}, + [1259] = {.lex_state = 3}, + [1260] = {.lex_state = 3}, + [1261] = {.lex_state = 3}, + [1262] = {.lex_state = 3}, + [1263] = {.lex_state = 86, .external_lex_state = 4}, + [1264] = {.lex_state = 3}, + [1265] = {.lex_state = 3}, + [1266] = {.lex_state = 3}, + [1267] = {.lex_state = 3}, + [1268] = {.lex_state = 87, .external_lex_state = 5}, + [1269] = {.lex_state = 3}, + [1270] = {.lex_state = 3}, + [1271] = {.lex_state = 3}, + [1272] = {.lex_state = 86}, + [1273] = {.lex_state = 3}, + [1274] = {.lex_state = 3}, + [1275] = {.lex_state = 86}, + [1276] = {.lex_state = 86}, + [1277] = {.lex_state = 3}, + [1278] = {.lex_state = 3}, + [1279] = {.lex_state = 3}, + [1280] = {.lex_state = 3}, + [1281] = {.lex_state = 3}, + [1282] = {.lex_state = 3}, + [1283] = {.lex_state = 86, .external_lex_state = 4}, + [1284] = {.lex_state = 3}, + [1285] = {.lex_state = 86}, + [1286] = {.lex_state = 3}, + [1287] = {.lex_state = 3}, + [1288] = {.lex_state = 3}, + [1289] = {.lex_state = 86}, + [1290] = {.lex_state = 3}, + [1291] = {.lex_state = 3, .external_lex_state = 4}, + [1292] = {.lex_state = 3}, + [1293] = {.lex_state = 3}, + [1294] = {.lex_state = 86, .external_lex_state = 4}, + [1295] = {.lex_state = 3}, + [1296] = {.lex_state = 3}, + [1297] = {.lex_state = 86}, + [1298] = {.lex_state = 3}, + [1299] = {.lex_state = 3}, + [1300] = {.lex_state = 3}, + [1301] = {.lex_state = 3}, + [1302] = {.lex_state = 3}, + [1303] = {.lex_state = 3}, + [1304] = {.lex_state = 3}, + [1305] = {.lex_state = 87, .external_lex_state = 5}, + [1306] = {.lex_state = 86, .external_lex_state = 4}, + [1307] = {.lex_state = 3}, + [1308] = {.lex_state = 3}, + [1309] = {.lex_state = 3}, + [1310] = {.lex_state = 3}, + [1311] = {.lex_state = 3}, + [1312] = {.lex_state = 86}, + [1313] = {.lex_state = 3, .external_lex_state = 4}, + [1314] = {.lex_state = 87, .external_lex_state = 5}, + [1315] = {.lex_state = 3, .external_lex_state = 4}, + [1316] = {.lex_state = 86, .external_lex_state = 4}, + [1317] = {.lex_state = 3}, + [1318] = {.lex_state = 3}, + [1319] = {.lex_state = 3}, + [1320] = {.lex_state = 87}, + [1321] = {.lex_state = 3}, + [1322] = {.lex_state = 3}, + [1323] = {.lex_state = 86, .external_lex_state = 4}, + [1324] = {.lex_state = 3}, + [1325] = {.lex_state = 3}, + [1326] = {.lex_state = 3, .external_lex_state = 4}, + [1327] = {.lex_state = 3}, + [1328] = {.lex_state = 86, .external_lex_state = 4}, + [1329] = {.lex_state = 86}, + [1330] = {.lex_state = 3, .external_lex_state = 4}, + [1331] = {.lex_state = 3, .external_lex_state = 4}, + [1332] = {.lex_state = 3, .external_lex_state = 4}, + [1333] = {.lex_state = 86}, + [1334] = {.lex_state = 86, .external_lex_state = 4}, + [1335] = {.lex_state = 3}, + [1336] = {.lex_state = 86, .external_lex_state = 4}, + [1337] = {.lex_state = 86, .external_lex_state = 4}, + [1338] = {.lex_state = 3}, + [1339] = {.lex_state = 3}, + [1340] = {.lex_state = 3, .external_lex_state = 4}, + [1341] = {.lex_state = 86, .external_lex_state = 4}, + [1342] = {.lex_state = 3, .external_lex_state = 4}, + [1343] = {.lex_state = 3}, + [1344] = {.lex_state = 3}, + [1345] = {.lex_state = 86, .external_lex_state = 4}, + [1346] = {.lex_state = 86, .external_lex_state = 4}, + [1347] = {.lex_state = 3}, + [1348] = {.lex_state = 3}, + [1349] = {.lex_state = 3}, + [1350] = {.lex_state = 3}, + [1351] = {.lex_state = 3, .external_lex_state = 4}, + [1352] = {.lex_state = 3}, + [1353] = {.lex_state = 86, .external_lex_state = 4}, + [1354] = {.lex_state = 3, .external_lex_state = 4}, + [1355] = {.lex_state = 86}, + [1356] = {.lex_state = 3, .external_lex_state = 4}, + [1357] = {.lex_state = 3}, + [1358] = {.lex_state = 3}, + [1359] = {.lex_state = 86}, + [1360] = {.lex_state = 3}, + [1361] = {.lex_state = 3, .external_lex_state = 4}, + [1362] = {.lex_state = 3}, + [1363] = {.lex_state = 3}, + [1364] = {.lex_state = 87}, + [1365] = {.lex_state = 86}, + [1366] = {.lex_state = 86, .external_lex_state = 4}, + [1367] = {.lex_state = 3}, + [1368] = {.lex_state = 86}, + [1369] = {.lex_state = 86}, + [1370] = {.lex_state = 3}, + [1371] = {.lex_state = 86}, + [1372] = {.lex_state = 3}, + [1373] = {.lex_state = 3}, + [1374] = {.lex_state = 86, .external_lex_state = 4}, + [1375] = {.lex_state = 86, .external_lex_state = 4}, + [1376] = {.lex_state = 3}, + [1377] = {.lex_state = 86, .external_lex_state = 4}, + [1378] = {.lex_state = 86, .external_lex_state = 4}, + [1379] = {.lex_state = 86, .external_lex_state = 4}, + [1380] = {.lex_state = 3}, + [1381] = {.lex_state = 3}, + [1382] = {.lex_state = 86}, + [1383] = {.lex_state = 87, .external_lex_state = 5}, + [1384] = {.lex_state = 86}, + [1385] = {.lex_state = 86}, + [1386] = {.lex_state = 86}, + [1387] = {.lex_state = 3}, + [1388] = {.lex_state = 86, .external_lex_state = 4}, + [1389] = {.lex_state = 86}, + [1390] = {.lex_state = 86, .external_lex_state = 4}, + [1391] = {.lex_state = 86}, + [1392] = {.lex_state = 86, .external_lex_state = 4}, + [1393] = {.lex_state = 86, .external_lex_state = 4}, + [1394] = {.lex_state = 86, .external_lex_state = 4}, + [1395] = {.lex_state = 86, .external_lex_state = 4}, + [1396] = {.lex_state = 86, .external_lex_state = 4}, + [1397] = {.lex_state = 86}, + [1398] = {.lex_state = 86, .external_lex_state = 4}, + [1399] = {.lex_state = 3}, + [1400] = {.lex_state = 86, .external_lex_state = 4}, + [1401] = {.lex_state = 86}, + [1402] = {.lex_state = 86}, + [1403] = {.lex_state = 3}, + [1404] = {.lex_state = 86, .external_lex_state = 4}, + [1405] = {.lex_state = 86, .external_lex_state = 4}, + [1406] = {.lex_state = 86}, + [1407] = {.lex_state = 86, .external_lex_state = 4}, + [1408] = {.lex_state = 86}, + [1409] = {.lex_state = 86}, + [1410] = {.lex_state = 86}, + [1411] = {.lex_state = 86, .external_lex_state = 4}, + [1412] = {.lex_state = 86, .external_lex_state = 4}, + [1413] = {.lex_state = 86, .external_lex_state = 4}, + [1414] = {.lex_state = 3}, + [1415] = {.lex_state = 86, .external_lex_state = 4}, + [1416] = {.lex_state = 86, .external_lex_state = 4}, + [1417] = {.lex_state = 86}, + [1418] = {.lex_state = 86, .external_lex_state = 4}, + [1419] = {.lex_state = 86}, + [1420] = {.lex_state = 3}, + [1421] = {.lex_state = 86, .external_lex_state = 4}, + [1422] = {.lex_state = 3}, + [1423] = {.lex_state = 3}, + [1424] = {.lex_state = 3}, + [1425] = {.lex_state = 86, .external_lex_state = 4}, + [1426] = {.lex_state = 86, .external_lex_state = 4}, + [1427] = {.lex_state = 86, .external_lex_state = 4}, + [1428] = {.lex_state = 3}, + [1429] = {.lex_state = 86, .external_lex_state = 4}, + [1430] = {.lex_state = 86, .external_lex_state = 4}, + [1431] = {.lex_state = 3}, + [1432] = {.lex_state = 3}, + [1433] = {.lex_state = 86, .external_lex_state = 4}, + [1434] = {.lex_state = 86, .external_lex_state = 4}, + [1435] = {.lex_state = 86, .external_lex_state = 4}, + [1436] = {.lex_state = 86, .external_lex_state = 4}, + [1437] = {.lex_state = 86, .external_lex_state = 4}, + [1438] = {.lex_state = 86, .external_lex_state = 4}, + [1439] = {.lex_state = 86, .external_lex_state = 4}, + [1440] = {.lex_state = 3}, + [1441] = {.lex_state = 3}, + [1442] = {.lex_state = 3}, + [1443] = {.lex_state = 86, .external_lex_state = 4}, + [1444] = {.lex_state = 86, .external_lex_state = 4}, + [1445] = {.lex_state = 86, .external_lex_state = 4}, + [1446] = {.lex_state = 86}, + [1447] = {.lex_state = 86, .external_lex_state = 4}, + [1448] = {.lex_state = 86, .external_lex_state = 4}, + [1449] = {.lex_state = 3}, + [1450] = {.lex_state = 3}, + [1451] = {.lex_state = 3}, + [1452] = {.lex_state = 86, .external_lex_state = 4}, + [1453] = {.lex_state = 86}, + [1454] = {.lex_state = 86, .external_lex_state = 4}, + [1455] = {.lex_state = 3}, + [1456] = {.lex_state = 87}, + [1457] = {.lex_state = 86, .external_lex_state = 4}, + [1458] = {.lex_state = 86, .external_lex_state = 4}, + [1459] = {.lex_state = 3}, + [1460] = {.lex_state = 86, .external_lex_state = 4}, + [1461] = {.lex_state = 86, .external_lex_state = 4}, + [1462] = {.lex_state = 86}, + [1463] = {.lex_state = 3}, + [1464] = {.lex_state = 86}, + [1465] = {.lex_state = 86}, + [1466] = {.lex_state = 3}, + [1467] = {.lex_state = 86, .external_lex_state = 4}, + [1468] = {.lex_state = 86}, + [1469] = {.lex_state = 86}, + [1470] = {.lex_state = 3}, + [1471] = {.lex_state = 86, .external_lex_state = 4}, + [1472] = {.lex_state = 86, .external_lex_state = 4}, + [1473] = {.lex_state = 86, .external_lex_state = 4}, + [1474] = {.lex_state = 3}, + [1475] = {.lex_state = 86}, + [1476] = {.lex_state = 86, .external_lex_state = 4}, + [1477] = {.lex_state = 86, .external_lex_state = 4}, + [1478] = {.lex_state = 86, .external_lex_state = 4}, + [1479] = {.lex_state = 86}, + [1480] = {.lex_state = 86, .external_lex_state = 4}, + [1481] = {.lex_state = 86, .external_lex_state = 4}, + [1482] = {.lex_state = 86, .external_lex_state = 4}, + [1483] = {.lex_state = 3}, + [1484] = {.lex_state = 3}, + [1485] = {.lex_state = 3}, + [1486] = {.lex_state = 3}, + [1487] = {.lex_state = 3}, + [1488] = {.lex_state = 86}, + [1489] = {.lex_state = 86}, + [1490] = {.lex_state = 86}, + [1491] = {.lex_state = 86}, + [1492] = {.lex_state = 3}, + [1493] = {.lex_state = 86}, + [1494] = {.lex_state = 86}, + [1495] = {.lex_state = 3}, + [1496] = {.lex_state = 86}, + [1497] = {.lex_state = 3}, + [1498] = {.lex_state = 86}, + [1499] = {.lex_state = 86}, + [1500] = {.lex_state = 3}, + [1501] = {.lex_state = 86}, + [1502] = {.lex_state = 86}, + [1503] = {.lex_state = 86}, + [1504] = {.lex_state = 86}, + [1505] = {.lex_state = 3}, + [1506] = {.lex_state = 3}, + [1507] = {.lex_state = 3}, + [1508] = {.lex_state = 3}, + [1509] = {.lex_state = 3}, + [1510] = {.lex_state = 3}, + [1511] = {.lex_state = 86}, + [1512] = {.lex_state = 3}, + [1513] = {.lex_state = 3}, + [1514] = {.lex_state = 86}, + [1515] = {.lex_state = 3}, + [1516] = {.lex_state = 86, .external_lex_state = 4}, + [1517] = {.lex_state = 3}, + [1518] = {.lex_state = 86, .external_lex_state = 4}, + [1519] = {.lex_state = 3}, + [1520] = {.lex_state = 86}, + [1521] = {.lex_state = 86}, + [1522] = {.lex_state = 3}, + [1523] = {.lex_state = 86}, + [1524] = {.lex_state = 86}, + [1525] = {.lex_state = 86}, + [1526] = {.lex_state = 86}, + [1527] = {.lex_state = 86}, + [1528] = {.lex_state = 86}, + [1529] = {.lex_state = 86}, + [1530] = {.lex_state = 3}, + [1531] = {.lex_state = 3}, + [1532] = {.lex_state = 86}, + [1533] = {.lex_state = 86}, + [1534] = {.lex_state = 86}, + [1535] = {.lex_state = 3}, + [1536] = {.lex_state = 86}, + [1537] = {.lex_state = 86}, + [1538] = {.lex_state = 3}, + [1539] = {.lex_state = 86}, + [1540] = {.lex_state = 3}, + [1541] = {.lex_state = 86}, + [1542] = {.lex_state = 86}, + [1543] = {.lex_state = 86}, + [1544] = {.lex_state = 86}, + [1545] = {.lex_state = 86}, + [1546] = {.lex_state = 86}, + [1547] = {.lex_state = 86}, + [1548] = {.lex_state = 86}, + [1549] = {.lex_state = 86}, + [1550] = {.lex_state = 86}, + [1551] = {.lex_state = 86}, + [1552] = {.lex_state = 86}, + [1553] = {.lex_state = 3}, + [1554] = {.lex_state = 3}, + [1555] = {.lex_state = 3}, + [1556] = {.lex_state = 86}, + [1557] = {.lex_state = 3}, + [1558] = {.lex_state = 86}, + [1559] = {.lex_state = 3}, + [1560] = {.lex_state = 86, .external_lex_state = 4}, + [1561] = {.lex_state = 3}, + [1562] = {.lex_state = 86}, + [1563] = {.lex_state = 3}, + [1564] = {.lex_state = 86}, + [1565] = {.lex_state = 86, .external_lex_state = 4}, + [1566] = {.lex_state = 86}, + [1567] = {.lex_state = 3}, + [1568] = {.lex_state = 3}, + [1569] = {.lex_state = 86}, + [1570] = {.lex_state = 3}, + [1571] = {.lex_state = 86}, + [1572] = {.lex_state = 86, .external_lex_state = 4}, + [1573] = {.lex_state = 86}, + [1574] = {.lex_state = 86}, + [1575] = {.lex_state = 3}, + [1576] = {.lex_state = 86}, + [1577] = {.lex_state = 86}, + [1578] = {.lex_state = 3}, + [1579] = {.lex_state = 3}, + [1580] = {.lex_state = 3}, + [1581] = {.lex_state = 86, .external_lex_state = 4}, + [1582] = {.lex_state = 3}, + [1583] = {.lex_state = 86}, + [1584] = {.lex_state = 86}, + [1585] = {.lex_state = 86}, + [1586] = {.lex_state = 3}, + [1587] = {.lex_state = 3}, + [1588] = {.lex_state = 3}, + [1589] = {.lex_state = 86}, + [1590] = {.lex_state = 86}, + [1591] = {.lex_state = 3}, + [1592] = {.lex_state = 3}, + [1593] = {.lex_state = 86}, + [1594] = {.lex_state = 86}, + [1595] = {.lex_state = 3}, + [1596] = {.lex_state = 86}, + [1597] = {.lex_state = 86}, + [1598] = {.lex_state = 86, .external_lex_state = 4}, + [1599] = {.lex_state = 86, .external_lex_state = 4}, + [1600] = {.lex_state = 3}, + [1601] = {.lex_state = 3}, + [1602] = {.lex_state = 3}, + [1603] = {.lex_state = 3}, + [1604] = {.lex_state = 86}, + [1605] = {.lex_state = 3}, + [1606] = {.lex_state = 86}, + [1607] = {.lex_state = 3}, + [1608] = {.lex_state = 3}, + [1609] = {.lex_state = 3}, + [1610] = {.lex_state = 3}, + [1611] = {.lex_state = 86}, + [1612] = {.lex_state = 3}, + [1613] = {.lex_state = 86}, + [1614] = {.lex_state = 86}, + [1615] = {.lex_state = 86}, + [1616] = {.lex_state = 86}, + [1617] = {.lex_state = 86}, + [1618] = {.lex_state = 86}, + [1619] = {.lex_state = 86}, + [1620] = {.lex_state = 86}, + [1621] = {.lex_state = 86}, + [1622] = {.lex_state = 86}, + [1623] = {.lex_state = 86}, + [1624] = {.lex_state = 3}, [1625] = {.lex_state = 86}, - [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 86, .external_lex_state = 5}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 0}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0, .external_lex_state = 4}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 0, .external_lex_state = 4}, - [1653] = {.lex_state = 0, .external_lex_state = 4}, - [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 0, .external_lex_state = 4}, - [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 0, .external_lex_state = 4}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 0, .external_lex_state = 4}, - [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 0, .external_lex_state = 4}, - [1669] = {.lex_state = 0, .external_lex_state = 4}, - [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 0, .external_lex_state = 4}, - [1672] = {.lex_state = 0, .external_lex_state = 4}, - [1673] = {.lex_state = 0, .external_lex_state = 4}, - [1674] = {.lex_state = 0, .external_lex_state = 4}, - [1675] = {.lex_state = 0, .external_lex_state = 4}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 0, .external_lex_state = 4}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 0, .external_lex_state = 4}, - [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 0, .external_lex_state = 4}, - [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 0}, - [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 0}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 0, .external_lex_state = 4}, - [1693] = {.lex_state = 0, .external_lex_state = 4}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 0, .external_lex_state = 4}, - [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 0, .external_lex_state = 4}, - [1708] = {.lex_state = 0}, - [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 0, .external_lex_state = 4}, - [1713] = {.lex_state = 0, .external_lex_state = 4}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 0, .external_lex_state = 4}, - [1716] = {.lex_state = 0}, - [1717] = {.lex_state = 0, .external_lex_state = 4}, - [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 0, .external_lex_state = 4}, - [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 0, .external_lex_state = 4}, - [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 0, .external_lex_state = 4}, - [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 0}, - [1728] = {.lex_state = 0}, - [1729] = {.lex_state = 0, .external_lex_state = 4}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 0, .external_lex_state = 4}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 0, .external_lex_state = 4}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 0}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 0, .external_lex_state = 4}, - [1747] = {.lex_state = 0, .external_lex_state = 4}, - [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 0}, - [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 0, .external_lex_state = 4}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 0, .external_lex_state = 4}, - [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 0, .external_lex_state = 4}, - [1757] = {.lex_state = 0, .external_lex_state = 4}, - [1758] = {.lex_state = 0, .external_lex_state = 4}, - [1759] = {.lex_state = 0, .external_lex_state = 4}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0, .external_lex_state = 4}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 0, .external_lex_state = 4}, - [1766] = {.lex_state = 0, .external_lex_state = 4}, - [1767] = {.lex_state = 0, .external_lex_state = 4}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 0, .external_lex_state = 4}, - [1771] = {.lex_state = 0}, - [1772] = {.lex_state = 0, .external_lex_state = 4}, - [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 0, .external_lex_state = 4}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0, .external_lex_state = 4}, - [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 0, .external_lex_state = 4}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0, .external_lex_state = 4}, - [1783] = {.lex_state = 0, .external_lex_state = 4}, - [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0, .external_lex_state = 4}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0, .external_lex_state = 4}, - [1794] = {.lex_state = 0, .external_lex_state = 4}, - [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0, .external_lex_state = 4}, - [1797] = {.lex_state = 0, .external_lex_state = 4}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 0, .external_lex_state = 4}, - [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 4}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 4}, - [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 4}, - [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 4}, - [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 4}, - [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 4}, - [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 4}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 0}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 4}, - [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 4}, - [1848] = {.lex_state = 4}, - [1849] = {.lex_state = 4}, - [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 4}, - [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 4}, - [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 4}, - [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 0}, - [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 0}, - [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 0}, - [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 4}, - [1884] = {.lex_state = 4}, - [1885] = {.lex_state = 4}, - [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 4}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 4}, - [1890] = {.lex_state = 4}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 4}, - [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 4}, - [1896] = {.lex_state = 4}, - [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 0}, - [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 4}, - [1904] = {.lex_state = 4}, - [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 4}, - [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 4}, - [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 4}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 4}, - [1918] = {.lex_state = 4}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 4}, - [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 4}, - [1926] = {.lex_state = 0}, - [1927] = {.lex_state = 4}, - [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 4}, - [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 4}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 4}, - [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 4}, - [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 0}, - [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 4}, - [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 0}, - [1948] = {.lex_state = 0}, - [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 0}, - [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 0}, - [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 0}, - [1955] = {(TSStateId)(-1)}, - [1956] = {(TSStateId)(-1)}, + [1626] = {.lex_state = 86}, + [1627] = {.lex_state = 3}, + [1628] = {.lex_state = 3}, + [1629] = {.lex_state = 3}, + [1630] = {.lex_state = 3}, + [1631] = {.lex_state = 86}, + [1632] = {.lex_state = 3}, + [1633] = {.lex_state = 3}, + [1634] = {.lex_state = 86}, + [1635] = {.lex_state = 86}, + [1636] = {.lex_state = 3}, + [1637] = {.lex_state = 86}, + [1638] = {.lex_state = 86}, + [1639] = {.lex_state = 86}, + [1640] = {.lex_state = 86}, + [1641] = {.lex_state = 3}, + [1642] = {.lex_state = 3}, + [1643] = {.lex_state = 86, .external_lex_state = 4}, + [1644] = {.lex_state = 86}, + [1645] = {.lex_state = 86}, + [1646] = {.lex_state = 3}, + [1647] = {.lex_state = 86, .external_lex_state = 4}, + [1648] = {.lex_state = 3}, + [1649] = {.lex_state = 86}, + [1650] = {.lex_state = 86}, + [1651] = {.lex_state = 3}, + [1652] = {.lex_state = 86}, + [1653] = {.lex_state = 86}, + [1654] = {.lex_state = 86}, + [1655] = {.lex_state = 3}, + [1656] = {.lex_state = 3}, + [1657] = {.lex_state = 3}, + [1658] = {.lex_state = 86}, + [1659] = {.lex_state = 3}, + [1660] = {.lex_state = 3}, + [1661] = {.lex_state = 3}, + [1662] = {.lex_state = 86}, + [1663] = {.lex_state = 86, .external_lex_state = 4}, + [1664] = {.lex_state = 3}, + [1665] = {.lex_state = 86}, + [1666] = {.lex_state = 3, .external_lex_state = 4}, + [1667] = {.lex_state = 86}, + [1668] = {.lex_state = 86}, + [1669] = {.lex_state = 86}, + [1670] = {.lex_state = 3}, + [1671] = {.lex_state = 86}, + [1672] = {.lex_state = 86}, + [1673] = {.lex_state = 86}, + [1674] = {.lex_state = 3}, + [1675] = {.lex_state = 86}, + [1676] = {.lex_state = 3}, + [1677] = {.lex_state = 86}, + [1678] = {.lex_state = 3}, + [1679] = {.lex_state = 86}, + [1680] = {.lex_state = 3}, + [1681] = {.lex_state = 86}, + [1682] = {.lex_state = 86}, + [1683] = {.lex_state = 86}, + [1684] = {.lex_state = 86}, + [1685] = {.lex_state = 3}, + [1686] = {.lex_state = 86}, + [1687] = {.lex_state = 3}, + [1688] = {.lex_state = 86}, + [1689] = {.lex_state = 3}, + [1690] = {.lex_state = 3}, + [1691] = {.lex_state = 86}, + [1692] = {.lex_state = 86}, + [1693] = {.lex_state = 86}, + [1694] = {.lex_state = 86}, + [1695] = {.lex_state = 86}, + [1696] = {.lex_state = 86, .external_lex_state = 4}, + [1697] = {.lex_state = 3}, + [1698] = {.lex_state = 3}, + [1699] = {.lex_state = 3}, + [1700] = {.lex_state = 3}, + [1701] = {.lex_state = 86}, + [1702] = {.lex_state = 86}, + [1703] = {.lex_state = 86}, + [1704] = {.lex_state = 3}, + [1705] = {.lex_state = 86}, + [1706] = {.lex_state = 3}, + [1707] = {.lex_state = 86}, + [1708] = {.lex_state = 86}, + [1709] = {.lex_state = 86}, + [1710] = {.lex_state = 86}, + [1711] = {.lex_state = 86}, + [1712] = {.lex_state = 3}, + [1713] = {.lex_state = 86}, + [1714] = {.lex_state = 86}, + [1715] = {.lex_state = 86}, + [1716] = {.lex_state = 3, .external_lex_state = 4}, + [1717] = {.lex_state = 86}, + [1718] = {.lex_state = 86}, + [1719] = {.lex_state = 86, .external_lex_state = 4}, + [1720] = {.lex_state = 86}, + [1721] = {.lex_state = 88}, + [1722] = {.lex_state = 86, .external_lex_state = 4}, + [1723] = {.lex_state = 86, .external_lex_state = 4}, + [1724] = {.lex_state = 86, .external_lex_state = 4}, + [1725] = {.lex_state = 86}, + [1726] = {.lex_state = 86}, + [1727] = {.lex_state = 88, .external_lex_state = 5}, + [1728] = {.lex_state = 86, .external_lex_state = 4}, + [1729] = {.lex_state = 86}, + [1730] = {.lex_state = 86}, + [1731] = {.lex_state = 86}, + [1732] = {.lex_state = 86}, + [1733] = {.lex_state = 86}, + [1734] = {.lex_state = 86}, + [1735] = {.lex_state = 86, .external_lex_state = 4}, + [1736] = {.lex_state = 86}, + [1737] = {.lex_state = 86}, + [1738] = {.lex_state = 86}, + [1739] = {.lex_state = 86}, + [1740] = {.lex_state = 86, .external_lex_state = 4}, + [1741] = {.lex_state = 86, .external_lex_state = 4}, + [1742] = {.lex_state = 86}, + [1743] = {.lex_state = 86}, + [1744] = {.lex_state = 86}, + [1745] = {.lex_state = 86}, + [1746] = {.lex_state = 86}, + [1747] = {.lex_state = 86}, + [1748] = {.lex_state = 86}, + [1749] = {.lex_state = 86, .external_lex_state = 4}, + [1750] = {.lex_state = 86}, + [1751] = {.lex_state = 86}, + [1752] = {.lex_state = 86, .external_lex_state = 4}, + [1753] = {.lex_state = 86}, + [1754] = {.lex_state = 86, .external_lex_state = 4}, + [1755] = {.lex_state = 86}, + [1756] = {.lex_state = 86}, + [1757] = {.lex_state = 86}, + [1758] = {.lex_state = 86}, + [1759] = {.lex_state = 86}, + [1760] = {.lex_state = 86}, + [1761] = {.lex_state = 86}, + [1762] = {.lex_state = 86}, + [1763] = {.lex_state = 86}, + [1764] = {.lex_state = 86}, + [1765] = {.lex_state = 86}, + [1766] = {.lex_state = 86}, + [1767] = {.lex_state = 86, .external_lex_state = 4}, + [1768] = {.lex_state = 86, .external_lex_state = 4}, + [1769] = {.lex_state = 86}, + [1770] = {.lex_state = 86}, + [1771] = {.lex_state = 86, .external_lex_state = 4}, + [1772] = {.lex_state = 86}, + [1773] = {.lex_state = 86}, + [1774] = {.lex_state = 86}, + [1775] = {.lex_state = 86}, + [1776] = {.lex_state = 86}, + [1777] = {.lex_state = 86, .external_lex_state = 4}, + [1778] = {.lex_state = 86}, + [1779] = {.lex_state = 86, .external_lex_state = 4}, + [1780] = {.lex_state = 86, .external_lex_state = 4}, + [1781] = {.lex_state = 86}, + [1782] = {.lex_state = 86, .external_lex_state = 4}, + [1783] = {.lex_state = 86}, + [1784] = {.lex_state = 86, .external_lex_state = 4}, + [1785] = {.lex_state = 86}, + [1786] = {.lex_state = 86, .external_lex_state = 4}, + [1787] = {.lex_state = 86}, + [1788] = {.lex_state = 86}, + [1789] = {.lex_state = 86, .external_lex_state = 4}, + [1790] = {.lex_state = 86}, + [1791] = {.lex_state = 86}, + [1792] = {.lex_state = 86}, + [1793] = {.lex_state = 86}, + [1794] = {.lex_state = 86}, + [1795] = {.lex_state = 86}, + [1796] = {.lex_state = 86}, + [1797] = {.lex_state = 86}, + [1798] = {.lex_state = 86, .external_lex_state = 4}, + [1799] = {.lex_state = 86}, + [1800] = {.lex_state = 86}, + [1801] = {.lex_state = 86}, + [1802] = {.lex_state = 86}, + [1803] = {.lex_state = 86}, + [1804] = {.lex_state = 86}, + [1805] = {.lex_state = 86}, + [1806] = {.lex_state = 86}, + [1807] = {.lex_state = 86}, + [1808] = {.lex_state = 86}, + [1809] = {.lex_state = 86}, + [1810] = {.lex_state = 86}, + [1811] = {.lex_state = 86}, + [1812] = {.lex_state = 86}, + [1813] = {.lex_state = 86}, + [1814] = {.lex_state = 86}, + [1815] = {.lex_state = 86}, + [1816] = {.lex_state = 86}, + [1817] = {.lex_state = 86, .external_lex_state = 4}, + [1818] = {.lex_state = 86}, + [1819] = {.lex_state = 86}, + [1820] = {.lex_state = 86}, + [1821] = {.lex_state = 86}, + [1822] = {.lex_state = 86, .external_lex_state = 4}, + [1823] = {.lex_state = 86, .external_lex_state = 4}, + [1824] = {.lex_state = 86, .external_lex_state = 4}, + [1825] = {.lex_state = 86}, + [1826] = {.lex_state = 3}, + [1827] = {.lex_state = 86, .external_lex_state = 4}, + [1828] = {.lex_state = 86}, + [1829] = {.lex_state = 86, .external_lex_state = 4}, + [1830] = {.lex_state = 86}, + [1831] = {.lex_state = 86}, + [1832] = {.lex_state = 86, .external_lex_state = 4}, + [1833] = {.lex_state = 86, .external_lex_state = 4}, + [1834] = {.lex_state = 86}, + [1835] = {.lex_state = 86}, + [1836] = {.lex_state = 86}, + [1837] = {.lex_state = 86}, + [1838] = {.lex_state = 86}, + [1839] = {.lex_state = 86, .external_lex_state = 4}, + [1840] = {.lex_state = 86}, + [1841] = {.lex_state = 86}, + [1842] = {.lex_state = 86}, + [1843] = {.lex_state = 86}, + [1844] = {.lex_state = 86, .external_lex_state = 4}, + [1845] = {.lex_state = 86}, + [1846] = {.lex_state = 86}, + [1847] = {.lex_state = 86, .external_lex_state = 4}, + [1848] = {.lex_state = 86}, + [1849] = {.lex_state = 86, .external_lex_state = 4}, + [1850] = {.lex_state = 86}, + [1851] = {.lex_state = 86, .external_lex_state = 4}, + [1852] = {.lex_state = 86}, + [1853] = {.lex_state = 86, .external_lex_state = 4}, + [1854] = {.lex_state = 86, .external_lex_state = 4}, + [1855] = {.lex_state = 86}, + [1856] = {.lex_state = 86}, + [1857] = {.lex_state = 86}, + [1858] = {.lex_state = 86, .external_lex_state = 4}, + [1859] = {.lex_state = 86, .external_lex_state = 4}, + [1860] = {.lex_state = 86, .external_lex_state = 4}, + [1861] = {.lex_state = 86}, + [1862] = {.lex_state = 86}, + [1863] = {.lex_state = 86}, + [1864] = {.lex_state = 86, .external_lex_state = 4}, + [1865] = {.lex_state = 86}, + [1866] = {.lex_state = 86, .external_lex_state = 4}, + [1867] = {.lex_state = 86}, + [1868] = {.lex_state = 86}, + [1869] = {.lex_state = 86}, + [1870] = {.lex_state = 86, .external_lex_state = 4}, + [1871] = {.lex_state = 86}, + [1872] = {.lex_state = 86}, + [1873] = {.lex_state = 86}, + [1874] = {.lex_state = 86}, + [1875] = {.lex_state = 86, .external_lex_state = 4}, + [1876] = {.lex_state = 86}, + [1877] = {.lex_state = 86}, + [1878] = {.lex_state = 86}, + [1879] = {.lex_state = 86, .external_lex_state = 4}, + [1880] = {.lex_state = 86}, + [1881] = {.lex_state = 86, .external_lex_state = 4}, + [1882] = {.lex_state = 86}, + [1883] = {.lex_state = 86}, + [1884] = {.lex_state = 86, .external_lex_state = 4}, + [1885] = {.lex_state = 86, .external_lex_state = 4}, + [1886] = {.lex_state = 86}, + [1887] = {.lex_state = 86}, + [1888] = {.lex_state = 86}, + [1889] = {.lex_state = 86}, + [1890] = {.lex_state = 86, .external_lex_state = 4}, + [1891] = {.lex_state = 86, .external_lex_state = 4}, + [1892] = {.lex_state = 86}, + [1893] = {.lex_state = 86}, + [1894] = {.lex_state = 86, .external_lex_state = 4}, + [1895] = {.lex_state = 86}, + [1896] = {.lex_state = 86}, + [1897] = {.lex_state = 86}, + [1898] = {.lex_state = 86}, + [1899] = {.lex_state = 86, .external_lex_state = 4}, + [1900] = {.lex_state = 86}, + [1901] = {.lex_state = 86, .external_lex_state = 4}, + [1902] = {.lex_state = 86, .external_lex_state = 4}, + [1903] = {.lex_state = 86, .external_lex_state = 4}, + [1904] = {.lex_state = 86}, + [1905] = {.lex_state = 86}, + [1906] = {.lex_state = 86, .external_lex_state = 4}, + [1907] = {.lex_state = 86}, + [1908] = {.lex_state = 86}, + [1909] = {.lex_state = 86}, + [1910] = {.lex_state = 86}, + [1911] = {.lex_state = 86}, + [1912] = {.lex_state = 86}, + [1913] = {.lex_state = 86}, + [1914] = {.lex_state = 86}, + [1915] = {.lex_state = 86}, + [1916] = {.lex_state = 86}, + [1917] = {.lex_state = 86}, + [1918] = {.lex_state = 86}, + [1919] = {.lex_state = 86}, + [1920] = {.lex_state = 86}, + [1921] = {.lex_state = 86}, + [1922] = {.lex_state = 86}, + [1923] = {.lex_state = 3}, + [1924] = {.lex_state = 3}, + [1925] = {.lex_state = 86}, + [1926] = {.lex_state = 86}, + [1927] = {.lex_state = 86}, + [1928] = {.lex_state = 86}, + [1929] = {.lex_state = 86}, + [1930] = {.lex_state = 86}, + [1931] = {.lex_state = 86}, + [1932] = {.lex_state = 86}, + [1933] = {.lex_state = 86}, + [1934] = {.lex_state = 86}, + [1935] = {.lex_state = 86}, + [1936] = {.lex_state = 86}, + [1937] = {.lex_state = 86}, + [1938] = {.lex_state = 86}, + [1939] = {.lex_state = 86}, + [1940] = {.lex_state = 86}, + [1941] = {.lex_state = 86}, + [1942] = {.lex_state = 86}, + [1943] = {.lex_state = 86}, + [1944] = {.lex_state = 86}, + [1945] = {.lex_state = 3}, + [1946] = {.lex_state = 86}, + [1947] = {.lex_state = 86}, + [1948] = {.lex_state = 3}, + [1949] = {.lex_state = 86}, + [1950] = {.lex_state = 86}, + [1951] = {.lex_state = 86}, + [1952] = {.lex_state = 86}, + [1953] = {.lex_state = 86}, + [1954] = {.lex_state = 3}, + [1955] = {.lex_state = 3}, + [1956] = {.lex_state = 86}, + [1957] = {.lex_state = 86}, + [1958] = {.lex_state = 3}, + [1959] = {.lex_state = 86}, + [1960] = {.lex_state = 3}, + [1961] = {.lex_state = 86}, + [1962] = {.lex_state = 86}, + [1963] = {.lex_state = 86}, + [1964] = {.lex_state = 86}, + [1965] = {.lex_state = 86}, + [1966] = {.lex_state = 86}, + [1967] = {.lex_state = 3}, + [1968] = {.lex_state = 86}, + [1969] = {.lex_state = 3}, + [1970] = {.lex_state = 3}, + [1971] = {.lex_state = 3}, + [1972] = {.lex_state = 86}, + [1973] = {.lex_state = 86}, + [1974] = {.lex_state = 3}, + [1975] = {.lex_state = 3}, + [1976] = {.lex_state = 3}, + [1977] = {.lex_state = 86}, + [1978] = {.lex_state = 86}, + [1979] = {.lex_state = 86}, + [1980] = {.lex_state = 86}, + [1981] = {.lex_state = 86}, + [1982] = {.lex_state = 86}, + [1983] = {.lex_state = 86}, + [1984] = {.lex_state = 86}, + [1985] = {.lex_state = 86}, + [1986] = {.lex_state = 3}, + [1987] = {.lex_state = 86}, + [1988] = {.lex_state = 86}, + [1989] = {.lex_state = 86}, + [1990] = {.lex_state = 3}, + [1991] = {.lex_state = 86}, + [1992] = {.lex_state = 86}, + [1993] = {.lex_state = 86}, + [1994] = {.lex_state = 86}, + [1995] = {.lex_state = 86}, + [1996] = {.lex_state = 86}, + [1997] = {.lex_state = 86}, + [1998] = {.lex_state = 86}, + [1999] = {.lex_state = 86}, + [2000] = {.lex_state = 86}, + [2001] = {.lex_state = 3}, + [2002] = {.lex_state = 86}, + [2003] = {.lex_state = 86}, + [2004] = {.lex_state = 3}, + [2005] = {.lex_state = 86}, + [2006] = {.lex_state = 3}, + [2007] = {.lex_state = 86}, + [2008] = {.lex_state = 3}, + [2009] = {.lex_state = 86}, + [2010] = {.lex_state = 86}, + [2011] = {.lex_state = 3}, + [2012] = {.lex_state = 3}, + [2013] = {.lex_state = 3}, + [2014] = {.lex_state = 3}, + [2015] = {.lex_state = 86}, + [2016] = {.lex_state = 86}, + [2017] = {.lex_state = 3}, + [2018] = {.lex_state = 86}, + [2019] = {.lex_state = 3}, + [2020] = {.lex_state = 86}, + [2021] = {.lex_state = 86}, + [2022] = {.lex_state = 3}, + [2023] = {.lex_state = 3}, + [2024] = {.lex_state = 86}, + [2025] = {.lex_state = 86}, + [2026] = {.lex_state = 3}, + [2027] = {.lex_state = 86}, + [2028] = {.lex_state = 86}, + [2029] = {.lex_state = 86}, + [2030] = {.lex_state = 86}, + [2031] = {.lex_state = 86}, + [2032] = {.lex_state = 86}, + [2033] = {.lex_state = 3}, + [2034] = {.lex_state = 3}, + [2035] = {.lex_state = 86}, + [2036] = {.lex_state = 3}, + [2037] = {.lex_state = 86}, + [2038] = {.lex_state = 3}, + [2039] = {.lex_state = 3}, + [2040] = {.lex_state = 3}, + [2041] = {.lex_state = 86}, + [2042] = {.lex_state = 86}, + [2043] = {.lex_state = 3}, + [2044] = {.lex_state = 3}, + [2045] = {.lex_state = 86}, + [2046] = {.lex_state = 86}, + [2047] = {.lex_state = 86}, + [2048] = {.lex_state = 86}, + [2049] = {.lex_state = 86}, + [2050] = {.lex_state = 3}, + [2051] = {.lex_state = 86}, + [2052] = {.lex_state = 86}, + [2053] = {.lex_state = 86}, + [2054] = {.lex_state = 3}, + [2055] = {.lex_state = 86}, + [2056] = {.lex_state = 86}, + [2057] = {.lex_state = 86}, + [2058] = {.lex_state = 86}, + [2059] = {.lex_state = 3}, + [2060] = {.lex_state = 86}, + [2061] = {.lex_state = 3}, + [2062] = {.lex_state = 86}, + [2063] = {.lex_state = 86}, + [2064] = {.lex_state = 86}, + [2065] = {.lex_state = 86}, + [2066] = {.lex_state = 3}, + [2067] = {.lex_state = 86}, + [2068] = {.lex_state = 86}, + [2069] = {.lex_state = 86}, + [2070] = {.lex_state = 86}, + [2071] = {.lex_state = 86}, + [2072] = {.lex_state = 3}, + [2073] = {.lex_state = 86}, + [2074] = {.lex_state = 86}, + [2075] = {.lex_state = 86}, + [2076] = {.lex_state = 86}, + [2077] = {.lex_state = 86}, + [2078] = {(TSStateId)(-1)}, + [2079] = {(TSStateId)(-1)}, }; enum { @@ -7811,6 +8155,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_self] = ACTIONS(1), [anon_sym_parent] = ACTIONS(1), + [anon_sym_POUND_LBRACK] = ACTIONS(1), [sym_string] = ACTIONS(1), [sym_boolean] = ACTIONS(1), [sym_null] = ACTIONS(1), @@ -7847,5926 +8192,7469 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__eof] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(1949), + [sym_program] = STATE(2074), [sym_text_interpolation] = STATE(1), - [sym_text] = STATE(1625), - [aux_sym_text_repeat1] = STATE(1249), + [sym_text] = STATE(1721), + [aux_sym_text_repeat1] = STATE(1364), [ts_builtin_sym_end] = ACTIONS(7), [sym_php_tag] = ACTIONS(9), [anon_sym_QMARK_GT] = ACTIONS(11), [aux_sym_text_token1] = ACTIONS(13), [aux_sym_text_token2] = ACTIONS(13), - [sym_comment] = ACTIONS(15), + [sym_comment] = ACTIONS(5), }, [2] = { [sym_text_interpolation] = STATE(2), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), [aux_sym_program_repeat1] = STATE(2), - [ts_builtin_sym_end] = ACTIONS(17), - [sym_name] = ACTIONS(19), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(22), - [aux_sym_function_static_declaration_token1] = ACTIONS(25), - [aux_sym_global_declaration_token1] = ACTIONS(28), - [aux_sym_namespace_definition_token1] = ACTIONS(31), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(34), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(37), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(40), - [anon_sym_BSLASH] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(46), - [anon_sym_RBRACE] = ACTIONS(17), - [aux_sym_trait_declaration_token1] = ACTIONS(49), - [aux_sym_interface_declaration_token1] = ACTIONS(52), - [aux_sym_class_declaration_token1] = ACTIONS(55), - [aux_sym_class_modifier_token1] = ACTIONS(58), - [aux_sym_class_modifier_token2] = ACTIONS(58), - [aux_sym_visibility_modifier_token1] = ACTIONS(61), - [aux_sym_visibility_modifier_token2] = ACTIONS(61), - [aux_sym_visibility_modifier_token3] = ACTIONS(61), - [aux_sym_arrow_function_token1] = ACTIONS(64), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_array] = ACTIONS(70), - [anon_sym_unset] = ACTIONS(73), - [aux_sym_echo_statement_token1] = ACTIONS(76), - [anon_sym_declare] = ACTIONS(79), - [aux_sym_declare_statement_token1] = ACTIONS(82), - [sym_float] = ACTIONS(84), - [aux_sym_try_statement_token1] = ACTIONS(87), - [aux_sym_goto_statement_token1] = ACTIONS(90), - [aux_sym_continue_statement_token1] = ACTIONS(93), - [aux_sym_break_statement_token1] = ACTIONS(96), - [sym_integer] = ACTIONS(84), - [aux_sym_return_statement_token1] = ACTIONS(99), - [aux_sym_throw_expression_token1] = ACTIONS(102), - [aux_sym_while_statement_token1] = ACTIONS(105), - [aux_sym_while_statement_token2] = ACTIONS(82), - [aux_sym_do_statement_token1] = ACTIONS(108), - [aux_sym_for_statement_token1] = ACTIONS(111), - [aux_sym_for_statement_token2] = ACTIONS(82), - [aux_sym_foreach_statement_token1] = ACTIONS(114), - [aux_sym_foreach_statement_token2] = ACTIONS(82), - [aux_sym_if_statement_token1] = ACTIONS(117), - [aux_sym_if_statement_token2] = ACTIONS(82), - [aux_sym_match_expression_token1] = ACTIONS(120), - [aux_sym_match_default_expression_token1] = ACTIONS(82), - [aux_sym_switch_statement_token1] = ACTIONS(123), - [aux_sym_switch_block_token1] = ACTIONS(82), - [aux_sym_case_statement_token1] = ACTIONS(82), - [anon_sym_AT] = ACTIONS(126), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(132), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_clone] = ACTIONS(135), - [anon_sym_print] = ACTIONS(138), - [anon_sym_new] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(144), - [anon_sym_DASH_DASH] = ACTIONS(144), - [sym_shell_command_expression] = ACTIONS(147), - [anon_sym_list] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_self] = ACTIONS(156), - [anon_sym_parent] = ACTIONS(156), - [sym_string] = ACTIONS(159), - [sym_boolean] = ACTIONS(84), - [sym_null] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_yield] = ACTIONS(165), - [aux_sym_include_expression_token1] = ACTIONS(168), - [aux_sym_include_once_expression_token1] = ACTIONS(171), - [aux_sym_require_expression_token1] = ACTIONS(174), - [aux_sym_require_once_expression_token1] = ACTIONS(177), + [aux_sym_attribute_list_repeat2] = STATE(995), + [ts_builtin_sym_end] = ACTIONS(15), + [sym_name] = ACTIONS(17), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(23), + [aux_sym_global_declaration_token1] = ACTIONS(26), + [aux_sym_namespace_definition_token1] = ACTIONS(29), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(32), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(35), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(38), + [anon_sym_BSLASH] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(44), + [anon_sym_RBRACE] = ACTIONS(15), + [aux_sym_trait_declaration_token1] = ACTIONS(47), + [aux_sym_interface_declaration_token1] = ACTIONS(50), + [aux_sym_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), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(159), + [sym_heredoc] = ACTIONS(160), }, [3] = { [sym_text_interpolation] = STATE(3), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(200), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_match_default_expression_token1] = ACTIONS(250), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [aux_sym_switch_block_token1] = ACTIONS(250), - [aux_sym_case_statement_token1] = ACTIONS(250), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [4] = { [sym_text_interpolation] = STATE(4), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(6), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(290), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_match_default_expression_token1] = ACTIONS(292), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [aux_sym_switch_block_token1] = ACTIONS(292), - [aux_sym_case_statement_token1] = ACTIONS(292), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(5), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [5] = { [sym_text_interpolation] = STATE(5), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(3), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(294), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_match_default_expression_token1] = ACTIONS(296), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [aux_sym_switch_block_token1] = ACTIONS(296), - [aux_sym_case_statement_token1] = ACTIONS(296), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [6] = { [sym_text_interpolation] = STATE(6), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(298), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_match_default_expression_token1] = ACTIONS(300), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [aux_sym_switch_block_token1] = ACTIONS(300), - [aux_sym_case_statement_token1] = ACTIONS(300), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [7] = { [sym_text_interpolation] = STATE(7), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_while_statement_token2] = ACTIONS(302), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_foreach_statement_token2] = ACTIONS(302), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_if_statement_token2] = ACTIONS(302), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(17), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(20), + [aux_sym_function_static_declaration_token1] = ACTIONS(23), + [aux_sym_global_declaration_token1] = ACTIONS(26), + [aux_sym_namespace_definition_token1] = ACTIONS(29), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(32), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(35), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(38), + [anon_sym_BSLASH] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(44), + [aux_sym_trait_declaration_token1] = ACTIONS(47), + [aux_sym_interface_declaration_token1] = ACTIONS(50), + [aux_sym_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(305), + [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(308), + [aux_sym_do_statement_token1] = ACTIONS(106), + [aux_sym_for_statement_token1] = ACTIONS(311), + [aux_sym_foreach_statement_token1] = ACTIONS(314), + [aux_sym_if_statement_token1] = ACTIONS(317), + [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), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(160), }, [8] = { [sym_text_interpolation] = STATE(8), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(8), - [sym_name] = ACTIONS(19), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(22), - [aux_sym_function_static_declaration_token1] = ACTIONS(25), - [aux_sym_global_declaration_token1] = ACTIONS(28), - [aux_sym_namespace_definition_token1] = ACTIONS(31), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(34), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(37), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(40), - [anon_sym_BSLASH] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(46), - [aux_sym_trait_declaration_token1] = ACTIONS(49), - [aux_sym_interface_declaration_token1] = ACTIONS(52), - [aux_sym_class_declaration_token1] = ACTIONS(55), - [aux_sym_class_modifier_token1] = ACTIONS(58), - [aux_sym_class_modifier_token2] = ACTIONS(58), - [aux_sym_visibility_modifier_token1] = ACTIONS(61), - [aux_sym_visibility_modifier_token2] = ACTIONS(61), - [aux_sym_visibility_modifier_token3] = ACTIONS(61), - [aux_sym_arrow_function_token1] = ACTIONS(64), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_array] = ACTIONS(70), - [anon_sym_unset] = ACTIONS(73), - [aux_sym_echo_statement_token1] = ACTIONS(76), - [anon_sym_declare] = ACTIONS(304), - [sym_float] = ACTIONS(84), - [aux_sym_try_statement_token1] = ACTIONS(87), - [aux_sym_goto_statement_token1] = ACTIONS(90), - [aux_sym_continue_statement_token1] = ACTIONS(93), - [aux_sym_break_statement_token1] = ACTIONS(96), - [sym_integer] = ACTIONS(84), - [aux_sym_return_statement_token1] = ACTIONS(99), - [aux_sym_throw_expression_token1] = ACTIONS(102), - [aux_sym_while_statement_token1] = ACTIONS(307), - [aux_sym_do_statement_token1] = ACTIONS(108), - [aux_sym_for_statement_token1] = ACTIONS(310), - [aux_sym_foreach_statement_token1] = ACTIONS(313), - [aux_sym_if_statement_token1] = ACTIONS(316), - [aux_sym_if_statement_token2] = ACTIONS(82), - [aux_sym_else_if_clause_token1] = ACTIONS(82), - [aux_sym_else_clause_token1] = ACTIONS(82), - [aux_sym_match_expression_token1] = ACTIONS(120), - [aux_sym_switch_statement_token1] = ACTIONS(123), - [anon_sym_AT] = ACTIONS(126), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_TILDE] = ACTIONS(132), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_clone] = ACTIONS(135), - [anon_sym_print] = ACTIONS(138), - [anon_sym_new] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(144), - [anon_sym_DASH_DASH] = ACTIONS(144), - [sym_shell_command_expression] = ACTIONS(147), - [anon_sym_list] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_self] = ACTIONS(156), - [anon_sym_parent] = ACTIONS(156), - [sym_string] = ACTIONS(159), - [sym_boolean] = ACTIONS(84), - [sym_null] = ACTIONS(84), - [anon_sym_DOLLAR] = ACTIONS(162), - [anon_sym_yield] = ACTIONS(165), - [aux_sym_include_expression_token1] = ACTIONS(168), - [aux_sym_include_once_expression_token1] = ACTIONS(171), - [aux_sym_require_expression_token1] = ACTIONS(174), - [aux_sym_require_once_expression_token1] = ACTIONS(177), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(320), + [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(320), + [aux_sym_if_statement_token1] = ACTIONS(247), + [aux_sym_if_statement_token2] = ACTIONS(320), + [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(159), + [sym_heredoc] = ACTIONS(279), }, [9] = { [sym_text_interpolation] = STATE(9), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), [aux_sym_program_repeat1] = STATE(8), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_if_statement_token2] = ACTIONS(302), - [aux_sym_else_if_clause_token1] = ACTIONS(302), - [aux_sym_else_clause_token1] = ACTIONS(302), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(322), + [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(322), + [aux_sym_if_statement_token1] = ACTIONS(247), + [aux_sym_if_statement_token2] = ACTIONS(322), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [10] = { [sym_text_interpolation] = STATE(10), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(9), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_if_statement_token2] = ACTIONS(329), - [aux_sym_else_if_clause_token1] = ACTIONS(329), - [aux_sym_else_clause_token1] = ACTIONS(329), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(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(276), + [sym_heredoc] = ACTIONS(279), }, [11] = { [sym_text_interpolation] = STATE(11), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(7), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_while_statement_token2] = ACTIONS(329), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_foreach_statement_token2] = ACTIONS(329), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_if_statement_token2] = ACTIONS(329), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(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(276), + [sym_heredoc] = ACTIONS(279), }, [12] = { [sym_text_interpolation] = STATE(12), - [sym_empty_statement] = STATE(418), - [sym_function_static_declaration] = STATE(418), - [sym_global_declaration] = STATE(418), - [sym_namespace_definition] = STATE(418), - [sym_namespace_use_declaration] = STATE(418), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(418), - [sym_interface_declaration] = STATE(418), - [sym_class_declaration] = STATE(418), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(418), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(418), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(418), - [sym_unset_statement] = STATE(418), - [sym_declare_statement] = STATE(418), - [sym_try_statement] = STATE(418), - [sym_goto_statement] = STATE(418), - [sym_continue_statement] = STATE(418), - [sym_break_statement] = STATE(418), - [sym_return_statement] = STATE(418), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(418), - [sym_do_statement] = STATE(418), - [sym_for_statement] = STATE(418), - [sym_foreach_statement] = STATE(418), - [sym_if_statement] = STATE(418), - [sym_colon_block] = STATE(1827), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(418), - [sym_compound_statement] = STATE(418), - [sym_named_label_statement] = STATE(418), - [sym_expression_statement] = STATE(418), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(331), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [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(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(470), + [sym_interface_declaration] = STATE(470), + [sym_class_declaration] = STATE(470), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(470), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(470), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [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(893), + [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_colon_block] = STATE(1986), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(470), + [sym_compound_statement] = STATE(470), + [sym_named_label_statement] = STATE(470), + [sym_expression_statement] = STATE(470), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(335), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(338), + [sym_heredoc] = ACTIONS(279), }, [13] = { [sym_text_interpolation] = STATE(13), - [sym_empty_statement] = STATE(1492), - [sym_function_static_declaration] = STATE(1492), - [sym_global_declaration] = STATE(1492), - [sym_namespace_definition] = STATE(1492), - [sym_namespace_use_declaration] = STATE(1492), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1492), - [sym_interface_declaration] = STATE(1492), - [sym_class_declaration] = STATE(1492), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1492), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1492), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1492), - [sym_unset_statement] = STATE(1492), - [sym_declare_statement] = STATE(1492), - [sym_try_statement] = STATE(1492), - [sym_goto_statement] = STATE(1492), - [sym_continue_statement] = STATE(1492), - [sym_break_statement] = STATE(1492), - [sym_return_statement] = STATE(1492), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1492), - [sym_do_statement] = STATE(1492), - [sym_for_statement] = STATE(1492), - [sym_foreach_statement] = STATE(1492), - [sym_if_statement] = STATE(1492), - [sym_colon_block] = STATE(1938), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1492), - [sym_compound_statement] = STATE(1492), - [sym_named_label_statement] = STATE(1492), - [sym_expression_statement] = STATE(1492), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(339), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1586), + [sym_function_static_declaration] = STATE(1586), + [sym_global_declaration] = STATE(1586), + [sym_namespace_definition] = STATE(1586), + [sym_namespace_use_declaration] = STATE(1586), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1586), + [sym_interface_declaration] = STATE(1586), + [sym_class_declaration] = STATE(1586), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1586), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1586), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1586), + [sym_unset_statement] = STATE(1586), + [sym_declare_statement] = STATE(1586), + [sym_try_statement] = STATE(1586), + [sym_goto_statement] = STATE(1586), + [sym_continue_statement] = STATE(1586), + [sym_break_statement] = STATE(1586), + [sym_return_statement] = STATE(1586), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1586), + [sym_do_statement] = STATE(1586), + [sym_for_statement] = STATE(1586), + [sym_foreach_statement] = STATE(1586), + [sym_if_statement] = STATE(1586), + [sym_colon_block] = STATE(2017), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1586), + [sym_compound_statement] = STATE(1586), + [sym_named_label_statement] = STATE(1586), + [sym_expression_statement] = STATE(1586), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(342), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(336), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(366), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(378), + [aux_sym_do_statement_token1] = ACTIONS(380), + [aux_sym_for_statement_token1] = ACTIONS(382), + [aux_sym_foreach_statement_token1] = ACTIONS(384), + [aux_sym_if_statement_token1] = ACTIONS(386), + [aux_sym_match_expression_token1] = ACTIONS(249), + [aux_sym_switch_statement_token1] = ACTIONS(388), + [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(387), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(390), + [sym_heredoc] = ACTIONS(279), }, [14] = { [sym_text_interpolation] = STATE(14), - [sym_empty_statement] = STATE(1592), - [sym_function_static_declaration] = STATE(1592), - [sym_global_declaration] = STATE(1592), - [sym_namespace_definition] = STATE(1592), - [sym_namespace_use_declaration] = STATE(1592), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1592), - [sym_interface_declaration] = STATE(1592), - [sym_class_declaration] = STATE(1592), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1592), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1592), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1592), - [sym_unset_statement] = STATE(1592), - [sym_declare_statement] = STATE(1592), - [sym_try_statement] = STATE(1592), - [sym_goto_statement] = STATE(1592), - [sym_continue_statement] = STATE(1592), - [sym_break_statement] = STATE(1592), - [sym_return_statement] = STATE(1592), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1592), - [sym_do_statement] = STATE(1592), - [sym_for_statement] = STATE(1592), - [sym_foreach_statement] = STATE(1592), - [sym_if_statement] = STATE(1592), - [sym_colon_block] = STATE(1925), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1592), - [sym_compound_statement] = STATE(1592), - [sym_named_label_statement] = STATE(1592), - [sym_expression_statement] = STATE(1592), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(389), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1651), + [sym_function_static_declaration] = STATE(1651), + [sym_global_declaration] = STATE(1651), + [sym_namespace_definition] = STATE(1651), + [sym_namespace_use_declaration] = STATE(1651), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1651), + [sym_interface_declaration] = STATE(1651), + [sym_class_declaration] = STATE(1651), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1651), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1651), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1651), + [sym_unset_statement] = STATE(1651), + [sym_declare_statement] = STATE(1651), + [sym_try_statement] = STATE(1651), + [sym_goto_statement] = STATE(1651), + [sym_continue_statement] = STATE(1651), + [sym_break_statement] = STATE(1651), + [sym_return_statement] = STATE(1651), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1651), + [sym_do_statement] = STATE(1651), + [sym_for_statement] = STATE(1651), + [sym_foreach_statement] = STATE(1651), + [sym_if_statement] = STATE(1651), + [sym_colon_block] = STATE(2014), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1651), + [sym_compound_statement] = STATE(1651), + [sym_named_label_statement] = STATE(1651), + [sym_expression_statement] = STATE(1651), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(392), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(336), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(366), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(378), + [aux_sym_do_statement_token1] = ACTIONS(380), + [aux_sym_for_statement_token1] = ACTIONS(382), + [aux_sym_foreach_statement_token1] = ACTIONS(384), + [aux_sym_if_statement_token1] = ACTIONS(386), + [aux_sym_match_expression_token1] = ACTIONS(249), + [aux_sym_switch_statement_token1] = ACTIONS(388), + [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(391), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(394), + [sym_heredoc] = ACTIONS(279), }, [15] = { [sym_text_interpolation] = STATE(15), - [sym_empty_statement] = STATE(434), - [sym_function_static_declaration] = STATE(434), - [sym_global_declaration] = STATE(434), - [sym_namespace_definition] = STATE(434), - [sym_namespace_use_declaration] = STATE(434), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(434), - [sym_interface_declaration] = STATE(434), - [sym_class_declaration] = STATE(434), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(434), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(434), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(434), - [sym_unset_statement] = STATE(434), - [sym_declare_statement] = STATE(434), - [sym_try_statement] = STATE(434), - [sym_goto_statement] = STATE(434), - [sym_continue_statement] = STATE(434), - [sym_break_statement] = STATE(434), - [sym_return_statement] = STATE(434), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(434), - [sym_do_statement] = STATE(434), - [sym_for_statement] = STATE(434), - [sym_foreach_statement] = STATE(434), - [sym_if_statement] = STATE(434), - [sym_colon_block] = STATE(1801), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(434), - [sym_compound_statement] = STATE(434), - [sym_named_label_statement] = STATE(434), - [sym_expression_statement] = STATE(434), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(393), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [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(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(444), + [sym_interface_declaration] = STATE(444), + [sym_class_declaration] = STATE(444), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(444), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(444), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [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(893), + [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_colon_block] = STATE(1990), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(444), + [sym_compound_statement] = STATE(444), + [sym_named_label_statement] = STATE(444), + [sym_expression_statement] = STATE(444), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(181), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(396), + [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(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(395), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(398), + [sym_heredoc] = ACTIONS(279), }, [16] = { [sym_text_interpolation] = STATE(16), - [sym_empty_statement] = STATE(1592), - [sym_function_static_declaration] = STATE(1592), - [sym_global_declaration] = STATE(1592), - [sym_namespace_definition] = STATE(1592), - [sym_namespace_use_declaration] = STATE(1592), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1592), - [sym_interface_declaration] = STATE(1592), - [sym_class_declaration] = STATE(1592), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1592), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1592), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1592), - [sym_unset_statement] = STATE(1592), - [sym_declare_statement] = STATE(1592), - [sym_try_statement] = STATE(1592), - [sym_goto_statement] = STATE(1592), - [sym_continue_statement] = STATE(1592), - [sym_break_statement] = STATE(1592), - [sym_return_statement] = STATE(1592), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1592), - [sym_do_statement] = STATE(1592), - [sym_for_statement] = STATE(1592), - [sym_foreach_statement] = STATE(1592), - [sym_if_statement] = STATE(1592), - [sym_colon_block] = STATE(1925), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1592), - [sym_compound_statement] = STATE(1592), - [sym_named_label_statement] = STATE(1592), - [sym_expression_statement] = STATE(1592), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(389), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(397), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(399), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(401), - [aux_sym_foreach_statement_token1] = ACTIONS(403), - [aux_sym_if_statement_token1] = ACTIONS(405), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1586), + [sym_function_static_declaration] = STATE(1586), + [sym_global_declaration] = STATE(1586), + [sym_namespace_definition] = STATE(1586), + [sym_namespace_use_declaration] = STATE(1586), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1586), + [sym_interface_declaration] = STATE(1586), + [sym_class_declaration] = STATE(1586), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1586), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1586), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1586), + [sym_unset_statement] = STATE(1586), + [sym_declare_statement] = STATE(1586), + [sym_try_statement] = STATE(1586), + [sym_goto_statement] = STATE(1586), + [sym_continue_statement] = STATE(1586), + [sym_break_statement] = STATE(1586), + [sym_return_statement] = STATE(1586), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1586), + [sym_do_statement] = STATE(1586), + [sym_for_statement] = STATE(1586), + [sym_foreach_statement] = STATE(1586), + [sym_if_statement] = STATE(1586), + [sym_colon_block] = STATE(2017), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1586), + [sym_compound_statement] = STATE(1586), + [sym_named_label_statement] = STATE(1586), + [sym_expression_statement] = STATE(1586), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(342), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(336), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(391), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(390), + [sym_heredoc] = ACTIONS(279), }, [17] = { [sym_text_interpolation] = STATE(17), - [sym_empty_statement] = STATE(1492), - [sym_function_static_declaration] = STATE(1492), - [sym_global_declaration] = STATE(1492), - [sym_namespace_definition] = STATE(1492), - [sym_namespace_use_declaration] = STATE(1492), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1492), - [sym_interface_declaration] = STATE(1492), - [sym_class_declaration] = STATE(1492), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1492), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1492), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1492), - [sym_unset_statement] = STATE(1492), - [sym_declare_statement] = STATE(1492), - [sym_try_statement] = STATE(1492), - [sym_goto_statement] = STATE(1492), - [sym_continue_statement] = STATE(1492), - [sym_break_statement] = STATE(1492), - [sym_return_statement] = STATE(1492), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1492), - [sym_do_statement] = STATE(1492), - [sym_for_statement] = STATE(1492), - [sym_foreach_statement] = STATE(1492), - [sym_if_statement] = STATE(1492), - [sym_colon_block] = STATE(1938), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1492), - [sym_compound_statement] = STATE(1492), - [sym_named_label_statement] = STATE(1492), - [sym_expression_statement] = STATE(1492), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(339), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(397), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(399), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(401), - [aux_sym_foreach_statement_token1] = ACTIONS(403), - [aux_sym_if_statement_token1] = ACTIONS(405), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1651), + [sym_function_static_declaration] = STATE(1651), + [sym_global_declaration] = STATE(1651), + [sym_namespace_definition] = STATE(1651), + [sym_namespace_use_declaration] = STATE(1651), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1651), + [sym_interface_declaration] = STATE(1651), + [sym_class_declaration] = STATE(1651), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1651), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1651), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1651), + [sym_unset_statement] = STATE(1651), + [sym_declare_statement] = STATE(1651), + [sym_try_statement] = STATE(1651), + [sym_goto_statement] = STATE(1651), + [sym_continue_statement] = STATE(1651), + [sym_break_statement] = STATE(1651), + [sym_return_statement] = STATE(1651), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1651), + [sym_do_statement] = STATE(1651), + [sym_for_statement] = STATE(1651), + [sym_foreach_statement] = STATE(1651), + [sym_if_statement] = STATE(1651), + [sym_colon_block] = STATE(2014), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1651), + [sym_compound_statement] = STATE(1651), + [sym_named_label_statement] = STATE(1651), + [sym_expression_statement] = STATE(1651), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(392), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(336), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(387), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(394), + [sym_heredoc] = ACTIONS(279), }, [18] = { [sym_text_interpolation] = STATE(18), - [sym_empty_statement] = STATE(434), - [sym_function_static_declaration] = STATE(434), - [sym_global_declaration] = STATE(434), - [sym_namespace_definition] = STATE(434), - [sym_namespace_use_declaration] = STATE(434), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(434), - [sym_interface_declaration] = STATE(434), - [sym_class_declaration] = STATE(434), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(434), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(434), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(434), - [sym_unset_statement] = STATE(434), - [sym_declare_statement] = STATE(434), - [sym_try_statement] = STATE(434), - [sym_goto_statement] = STATE(434), - [sym_continue_statement] = STATE(434), - [sym_break_statement] = STATE(434), - [sym_return_statement] = STATE(434), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(434), - [sym_do_statement] = STATE(434), - [sym_for_statement] = STATE(434), - [sym_foreach_statement] = STATE(434), - [sym_if_statement] = STATE(434), - [sym_colon_block] = STATE(1801), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(434), - [sym_compound_statement] = STATE(434), - [sym_named_label_statement] = STATE(434), - [sym_expression_statement] = STATE(434), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(393), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [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(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(470), + [sym_interface_declaration] = STATE(470), + [sym_class_declaration] = STATE(470), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(470), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(470), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [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(893), + [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_colon_block] = STATE(1986), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(470), + [sym_compound_statement] = STATE(470), + [sym_named_label_statement] = STATE(470), + [sym_expression_statement] = STATE(470), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(395), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(338), + [sym_heredoc] = ACTIONS(279), }, [19] = { [sym_text_interpolation] = STATE(19), - [sym_empty_statement] = STATE(418), - [sym_function_static_declaration] = STATE(418), - [sym_global_declaration] = STATE(418), - [sym_namespace_definition] = STATE(418), - [sym_namespace_use_declaration] = STATE(418), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(418), - [sym_interface_declaration] = STATE(418), - [sym_class_declaration] = STATE(418), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(418), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(418), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(418), - [sym_unset_statement] = STATE(418), - [sym_declare_statement] = STATE(418), - [sym_try_statement] = STATE(418), - [sym_goto_statement] = STATE(418), - [sym_continue_statement] = STATE(418), - [sym_break_statement] = STATE(418), - [sym_return_statement] = STATE(418), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(418), - [sym_do_statement] = STATE(418), - [sym_for_statement] = STATE(418), - [sym_foreach_statement] = STATE(418), - [sym_if_statement] = STATE(418), - [sym_colon_block] = STATE(1827), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(418), - [sym_compound_statement] = STATE(418), - [sym_named_label_statement] = STATE(418), - [sym_expression_statement] = STATE(418), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(331), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [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(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(444), + [sym_interface_declaration] = STATE(444), + [sym_class_declaration] = STATE(444), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(444), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(444), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [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(893), + [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_colon_block] = STATE(1990), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(444), + [sym_compound_statement] = STATE(444), + [sym_named_label_statement] = STATE(444), + [sym_expression_statement] = STATE(444), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(181), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(396), + [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_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(335), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(398), + [sym_heredoc] = ACTIONS(279), }, [20] = { [sym_text_interpolation] = STATE(20), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(32), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(407), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(51), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(410), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [21] = { [sym_text_interpolation] = STATE(21), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(36), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(412), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [22] = { [sym_text_interpolation] = STATE(22), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(411), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(77), + [aux_sym_attribute_list_repeat2] = STATE(995), + [ts_builtin_sym_end] = ACTIONS(414), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [23] = { [sym_text_interpolation] = STATE(23), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(413), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(42), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(416), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [24] = { [sym_text_interpolation] = STATE(24), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(415), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(439), + [sym_function_static_declaration] = STATE(439), + [sym_global_declaration] = STATE(439), + [sym_namespace_definition] = STATE(439), + [sym_namespace_use_declaration] = STATE(439), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(439), + [sym_interface_declaration] = STATE(439), + [sym_class_declaration] = STATE(439), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(439), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(439), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(439), + [sym_unset_statement] = STATE(439), + [sym_declare_statement] = STATE(439), + [sym_try_statement] = STATE(439), + [sym_goto_statement] = STATE(439), + [sym_continue_statement] = STATE(439), + [sym_break_statement] = STATE(439), + [sym_return_statement] = STATE(439), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(439), + [sym_do_statement] = STATE(439), + [sym_for_statement] = STATE(439), + [sym_foreach_statement] = STATE(439), + [sym_if_statement] = STATE(439), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(439), + [sym_compound_statement] = STATE(439), + [sym_named_label_statement] = STATE(439), + [sym_expression_statement] = STATE(439), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(181), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(418), + [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(420), + [aux_sym_echo_statement_token1] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(276), + [sym__automatic_semicolon] = ACTIONS(422), + [sym_heredoc] = ACTIONS(279), }, [25] = { [sym_text_interpolation] = STATE(25), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(23), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(417), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [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(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(446), + [sym_interface_declaration] = STATE(446), + [sym_class_declaration] = STATE(446), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(446), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(446), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [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(893), + [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(898), + [sym_switch_statement] = STATE(446), + [sym_compound_statement] = STATE(446), + [sym_named_label_statement] = STATE(446), + [sym_expression_statement] = STATE(446), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(276), + [sym__automatic_semicolon] = ACTIONS(428), + [sym_heredoc] = ACTIONS(279), }, [26] = { [sym_text_interpolation] = STATE(26), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(24), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1568), + [sym_function_static_declaration] = STATE(1568), + [sym_global_declaration] = STATE(1568), + [sym_namespace_definition] = STATE(1568), + [sym_namespace_use_declaration] = STATE(1568), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1568), + [sym_interface_declaration] = STATE(1568), + [sym_class_declaration] = STATE(1568), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1568), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1568), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1568), + [sym_unset_statement] = STATE(1568), + [sym_declare_statement] = STATE(1568), + [sym_try_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_foreach_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1568), + [sym_compound_statement] = STATE(1568), + [sym_named_label_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(430), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(432), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(366), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(378), + [aux_sym_do_statement_token1] = ACTIONS(380), + [aux_sym_for_statement_token1] = ACTIONS(382), + [aux_sym_foreach_statement_token1] = ACTIONS(384), + [aux_sym_if_statement_token1] = ACTIONS(386), + [aux_sym_match_expression_token1] = ACTIONS(249), + [aux_sym_switch_statement_token1] = ACTIONS(388), + [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(276), + [sym__automatic_semicolon] = ACTIONS(434), + [sym_heredoc] = ACTIONS(279), }, [27] = { [sym_text_interpolation] = STATE(27), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(419), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(55), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(436), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [28] = { [sym_text_interpolation] = STATE(28), - [sym_empty_statement] = STATE(417), - [sym_function_static_declaration] = STATE(417), - [sym_global_declaration] = STATE(417), - [sym_namespace_definition] = STATE(417), - [sym_namespace_use_declaration] = STATE(417), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(417), - [sym_interface_declaration] = STATE(417), - [sym_class_declaration] = STATE(417), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(417), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(417), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(417), - [sym_unset_statement] = STATE(417), - [sym_declare_statement] = STATE(417), - [sym_try_statement] = STATE(417), - [sym_goto_statement] = STATE(417), - [sym_continue_statement] = STATE(417), - [sym_break_statement] = STATE(417), - [sym_return_statement] = STATE(417), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(417), - [sym_do_statement] = STATE(417), - [sym_for_statement] = STATE(417), - [sym_foreach_statement] = STATE(417), - [sym_if_statement] = STATE(417), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(417), - [sym_compound_statement] = STATE(417), - [sym_named_label_statement] = STATE(417), - [sym_expression_statement] = STATE(417), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(421), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(423), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(37), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(438), + [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_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(425), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [29] = { [sym_text_interpolation] = STATE(29), - [sym_empty_statement] = STATE(417), - [sym_function_static_declaration] = STATE(417), - [sym_global_declaration] = STATE(417), - [sym_namespace_definition] = STATE(417), - [sym_namespace_use_declaration] = STATE(417), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(417), - [sym_interface_declaration] = STATE(417), - [sym_class_declaration] = STATE(417), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(417), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(417), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(417), - [sym_unset_statement] = STATE(417), - [sym_declare_statement] = STATE(417), - [sym_try_statement] = STATE(417), - [sym_goto_statement] = STATE(417), - [sym_continue_statement] = STATE(417), - [sym_break_statement] = STATE(417), - [sym_return_statement] = STATE(417), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(417), - [sym_do_statement] = STATE(417), - [sym_for_statement] = STATE(417), - [sym_foreach_statement] = STATE(417), - [sym_if_statement] = STATE(417), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(417), - [sym_compound_statement] = STATE(417), - [sym_named_label_statement] = STATE(417), - [sym_expression_statement] = STATE(417), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(421), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(423), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(440), + [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_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(425), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [30] = { [sym_text_interpolation] = STATE(30), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(22), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(427), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(48), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(442), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [31] = { [sym_text_interpolation] = STATE(31), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(429), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(499), + [sym_function_static_declaration] = STATE(499), + [sym_global_declaration] = STATE(499), + [sym_namespace_definition] = STATE(499), + [sym_namespace_use_declaration] = STATE(499), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(499), + [sym_interface_declaration] = STATE(499), + [sym_class_declaration] = STATE(499), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(499), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(499), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(499), + [sym_unset_statement] = STATE(499), + [sym_declare_statement] = STATE(499), + [sym_try_statement] = STATE(499), + [sym_goto_statement] = STATE(499), + [sym_continue_statement] = STATE(499), + [sym_break_statement] = STATE(499), + [sym_return_statement] = STATE(499), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(499), + [sym_do_statement] = STATE(499), + [sym_for_statement] = STATE(499), + [sym_foreach_statement] = STATE(499), + [sym_if_statement] = STATE(499), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(499), + [sym_compound_statement] = STATE(499), + [sym_named_label_statement] = STATE(499), + [sym_expression_statement] = STATE(499), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(181), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(444), + [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(446), + [aux_sym_echo_statement_token1] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(276), + [sym__automatic_semicolon] = ACTIONS(448), + [sym_heredoc] = ACTIONS(279), }, [32] = { [sym_text_interpolation] = STATE(32), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(431), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(459), + [sym_function_static_declaration] = STATE(459), + [sym_global_declaration] = STATE(459), + [sym_namespace_definition] = STATE(459), + [sym_namespace_use_declaration] = STATE(459), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(459), + [sym_interface_declaration] = STATE(459), + [sym_class_declaration] = STATE(459), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(459), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(459), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(459), + [sym_unset_statement] = STATE(459), + [sym_declare_statement] = STATE(459), + [sym_try_statement] = STATE(459), + [sym_goto_statement] = STATE(459), + [sym_continue_statement] = STATE(459), + [sym_break_statement] = STATE(459), + [sym_return_statement] = STATE(459), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(459), + [sym_do_statement] = STATE(459), + [sym_for_statement] = STATE(459), + [sym_foreach_statement] = STATE(459), + [sym_if_statement] = STATE(459), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(459), + [sym_compound_statement] = STATE(459), + [sym_named_label_statement] = STATE(459), + [sym_expression_statement] = STATE(459), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(181), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(450), + [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(452), + [aux_sym_echo_statement_token1] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(276), + [sym__automatic_semicolon] = ACTIONS(454), + [sym_heredoc] = ACTIONS(279), }, [33] = { [sym_text_interpolation] = STATE(33), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(27), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(483), + [sym_function_static_declaration] = STATE(483), + [sym_global_declaration] = STATE(483), + [sym_namespace_definition] = STATE(483), + [sym_namespace_use_declaration] = STATE(483), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(483), + [sym_interface_declaration] = STATE(483), + [sym_class_declaration] = STATE(483), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(483), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(483), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(483), + [sym_unset_statement] = STATE(483), + [sym_declare_statement] = STATE(483), + [sym_try_statement] = STATE(483), + [sym_goto_statement] = STATE(483), + [sym_continue_statement] = STATE(483), + [sym_break_statement] = STATE(483), + [sym_return_statement] = STATE(483), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(483), + [sym_do_statement] = STATE(483), + [sym_for_statement] = STATE(483), + [sym_foreach_statement] = STATE(483), + [sym_if_statement] = STATE(483), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(483), + [sym_compound_statement] = STATE(483), + [sym_named_label_statement] = STATE(483), + [sym_expression_statement] = STATE(483), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(181), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(456), + [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(458), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(460), + [sym_heredoc] = ACTIONS(279), }, [34] = { [sym_text_interpolation] = STATE(34), - [sym_empty_statement] = STATE(1412), - [sym_function_static_declaration] = STATE(1412), - [sym_global_declaration] = STATE(1412), - [sym_namespace_definition] = STATE(1412), - [sym_namespace_use_declaration] = STATE(1412), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1412), - [sym_interface_declaration] = STATE(1412), - [sym_class_declaration] = STATE(1412), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1412), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1412), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1412), - [sym_unset_statement] = STATE(1412), - [sym_declare_statement] = STATE(1412), - [sym_try_statement] = STATE(1412), - [sym_goto_statement] = STATE(1412), - [sym_continue_statement] = STATE(1412), - [sym_break_statement] = STATE(1412), - [sym_return_statement] = STATE(1412), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1412), - [sym_do_statement] = STATE(1412), - [sym_for_statement] = STATE(1412), - [sym_foreach_statement] = STATE(1412), - [sym_if_statement] = STATE(1412), - [sym_colon_block] = STATE(1913), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1412), - [sym_compound_statement] = STATE(1412), - [sym_named_label_statement] = STATE(1412), - [sym_expression_statement] = STATE(1412), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(397), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(399), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(401), - [aux_sym_foreach_statement_token1] = ACTIONS(403), - [aux_sym_if_statement_token1] = ACTIONS(405), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1509), + [sym_function_static_declaration] = STATE(1509), + [sym_global_declaration] = STATE(1509), + [sym_namespace_definition] = STATE(1509), + [sym_namespace_use_declaration] = STATE(1509), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1509), + [sym_interface_declaration] = STATE(1509), + [sym_class_declaration] = STATE(1509), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1509), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1509), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1509), + [sym_unset_statement] = STATE(1509), + [sym_declare_statement] = STATE(1509), + [sym_try_statement] = STATE(1509), + [sym_goto_statement] = STATE(1509), + [sym_continue_statement] = STATE(1509), + [sym_break_statement] = STATE(1509), + [sym_return_statement] = STATE(1509), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1509), + [sym_do_statement] = STATE(1509), + [sym_for_statement] = STATE(1509), + [sym_foreach_statement] = STATE(1509), + [sym_if_statement] = STATE(1509), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1509), + [sym_compound_statement] = STATE(1509), + [sym_named_label_statement] = STATE(1509), + [sym_expression_statement] = STATE(1509), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(462), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(464), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(366), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(378), + [aux_sym_do_statement_token1] = ACTIONS(380), + [aux_sym_for_statement_token1] = ACTIONS(382), + [aux_sym_foreach_statement_token1] = ACTIONS(384), + [aux_sym_if_statement_token1] = ACTIONS(386), + [aux_sym_match_expression_token1] = ACTIONS(249), + [aux_sym_switch_statement_token1] = ACTIONS(388), + [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(276), + [sym__automatic_semicolon] = ACTIONS(466), + [sym_heredoc] = ACTIONS(279), }, [35] = { [sym_text_interpolation] = STATE(35), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(433), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1628), + [sym_function_static_declaration] = STATE(1628), + [sym_global_declaration] = STATE(1628), + [sym_namespace_definition] = STATE(1628), + [sym_namespace_use_declaration] = STATE(1628), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1628), + [sym_interface_declaration] = STATE(1628), + [sym_class_declaration] = STATE(1628), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1628), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1628), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1628), + [sym_unset_statement] = STATE(1628), + [sym_declare_statement] = STATE(1628), + [sym_try_statement] = STATE(1628), + [sym_goto_statement] = STATE(1628), + [sym_continue_statement] = STATE(1628), + [sym_break_statement] = STATE(1628), + [sym_return_statement] = STATE(1628), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1628), + [sym_do_statement] = STATE(1628), + [sym_for_statement] = STATE(1628), + [sym_foreach_statement] = STATE(1628), + [sym_if_statement] = STATE(1628), + [sym_colon_block] = STATE(2054), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1628), + [sym_compound_statement] = STATE(1628), + [sym_named_label_statement] = STATE(1628), + [sym_expression_statement] = STATE(1628), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(468), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(336), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [36] = { [sym_text_interpolation] = STATE(36), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(427), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1554), + [sym_function_static_declaration] = STATE(1554), + [sym_global_declaration] = STATE(1554), + [sym_namespace_definition] = STATE(1554), + [sym_namespace_use_declaration] = STATE(1554), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1554), + [sym_interface_declaration] = STATE(1554), + [sym_class_declaration] = STATE(1554), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1554), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1554), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1554), + [sym_unset_statement] = STATE(1554), + [sym_declare_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_goto_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_foreach_statement] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1554), + [sym_compound_statement] = STATE(1554), + [sym_named_label_statement] = STATE(1554), + [sym_expression_statement] = STATE(1554), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(470), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(472), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(366), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(378), + [aux_sym_do_statement_token1] = ACTIONS(380), + [aux_sym_for_statement_token1] = ACTIONS(382), + [aux_sym_foreach_statement_token1] = ACTIONS(384), + [aux_sym_if_statement_token1] = ACTIONS(386), + [aux_sym_match_expression_token1] = ACTIONS(249), + [aux_sym_switch_statement_token1] = ACTIONS(388), + [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(276), + [sym__automatic_semicolon] = ACTIONS(474), + [sym_heredoc] = ACTIONS(279), }, [37] = { [sym_text_interpolation] = STATE(37), - [sym_empty_statement] = STATE(1469), - [sym_function_static_declaration] = STATE(1469), - [sym_global_declaration] = STATE(1469), - [sym_namespace_definition] = STATE(1469), - [sym_namespace_use_declaration] = STATE(1469), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1469), - [sym_interface_declaration] = STATE(1469), - [sym_class_declaration] = STATE(1469), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1469), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1469), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1469), - [sym_unset_statement] = STATE(1469), - [sym_declare_statement] = STATE(1469), - [sym_try_statement] = STATE(1469), - [sym_goto_statement] = STATE(1469), - [sym_continue_statement] = STATE(1469), - [sym_break_statement] = STATE(1469), - [sym_return_statement] = STATE(1469), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1469), - [sym_do_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_foreach_statement] = STATE(1469), - [sym_if_statement] = STATE(1469), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_named_label_statement] = STATE(1469), - [sym_expression_statement] = STATE(1469), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(437), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(439), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(397), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(399), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(401), - [aux_sym_foreach_statement_token1] = ACTIONS(403), - [aux_sym_if_statement_token1] = ACTIONS(405), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(476), + [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_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(441), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [38] = { [sym_text_interpolation] = STATE(38), - [sym_empty_statement] = STATE(425), - [sym_function_static_declaration] = STATE(425), - [sym_global_declaration] = STATE(425), - [sym_namespace_definition] = STATE(425), - [sym_namespace_use_declaration] = STATE(425), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(425), - [sym_interface_declaration] = STATE(425), - [sym_class_declaration] = STATE(425), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(425), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(425), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(425), - [sym_unset_statement] = STATE(425), - [sym_declare_statement] = STATE(425), - [sym_try_statement] = STATE(425), - [sym_goto_statement] = STATE(425), - [sym_continue_statement] = STATE(425), - [sym_break_statement] = STATE(425), - [sym_return_statement] = STATE(425), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(425), - [sym_do_statement] = STATE(425), - [sym_for_statement] = STATE(425), - [sym_foreach_statement] = STATE(425), - [sym_if_statement] = STATE(425), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(425), - [sym_compound_statement] = STATE(425), - [sym_named_label_statement] = STATE(425), - [sym_expression_statement] = STATE(425), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(443), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(445), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(41), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(478), + [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__automatic_semicolon] = ACTIONS(447), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [39] = { [sym_text_interpolation] = STATE(39), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(35), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(449), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [ts_builtin_sym_end] = ACTIONS(480), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [40] = { [sym_text_interpolation] = STATE(40), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(449), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(483), + [sym_function_static_declaration] = STATE(483), + [sym_global_declaration] = STATE(483), + [sym_namespace_definition] = STATE(483), + [sym_namespace_use_declaration] = STATE(483), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(483), + [sym_interface_declaration] = STATE(483), + [sym_class_declaration] = STATE(483), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(483), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(483), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(483), + [sym_unset_statement] = STATE(483), + [sym_declare_statement] = STATE(483), + [sym_try_statement] = STATE(483), + [sym_goto_statement] = STATE(483), + [sym_continue_statement] = STATE(483), + [sym_break_statement] = STATE(483), + [sym_return_statement] = STATE(483), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(483), + [sym_do_statement] = STATE(483), + [sym_for_statement] = STATE(483), + [sym_foreach_statement] = STATE(483), + [sym_if_statement] = STATE(483), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(483), + [sym_compound_statement] = STATE(483), + [sym_named_label_statement] = STATE(483), + [sym_expression_statement] = STATE(483), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(181), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(456), + [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(458), + [aux_sym_echo_statement_token1] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(276), + [sym__automatic_semicolon] = ACTIONS(460), + [sym_heredoc] = ACTIONS(279), }, [41] = { [sym_text_interpolation] = STATE(41), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(482), + [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), + }, + [42] = { + [sym_text_interpolation] = STATE(42), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(484), + [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), + }, + [43] = { + [sym_text_interpolation] = STATE(43), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(486), + [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_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(279), + }, + [44] = { + [sym_text_interpolation] = STATE(44), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(484), + [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), + }, + [45] = { + [sym_text_interpolation] = STATE(45), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(488), + [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), + }, + [46] = { + [sym_text_interpolation] = STATE(46), + [sym_empty_statement] = STATE(484), + [sym_function_static_declaration] = STATE(484), + [sym_global_declaration] = STATE(484), + [sym_namespace_definition] = STATE(484), + [sym_namespace_use_declaration] = STATE(484), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(484), + [sym_interface_declaration] = STATE(484), + [sym_class_declaration] = STATE(484), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(484), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(484), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(484), + [sym_unset_statement] = STATE(484), + [sym_declare_statement] = STATE(484), + [sym_try_statement] = STATE(484), + [sym_goto_statement] = STATE(484), + [sym_continue_statement] = STATE(484), + [sym_break_statement] = STATE(484), + [sym_return_statement] = STATE(484), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(484), + [sym_do_statement] = STATE(484), + [sym_for_statement] = STATE(484), + [sym_foreach_statement] = STATE(484), + [sym_if_statement] = STATE(484), + [sym_colon_block] = STATE(1924), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(484), + [sym_compound_statement] = STATE(484), + [sym_named_label_statement] = STATE(484), + [sym_expression_statement] = STATE(484), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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), + }, + [47] = { + [sym_text_interpolation] = STATE(47), + [sym_empty_statement] = STATE(1605), + [sym_function_static_declaration] = STATE(1605), + [sym_global_declaration] = STATE(1605), + [sym_namespace_definition] = STATE(1605), + [sym_namespace_use_declaration] = STATE(1605), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1605), + [sym_interface_declaration] = STATE(1605), + [sym_class_declaration] = STATE(1605), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1605), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1605), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1605), + [sym_unset_statement] = STATE(1605), + [sym_declare_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_goto_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_foreach_statement] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1605), + [sym_compound_statement] = STATE(1605), + [sym_named_label_statement] = STATE(1605), + [sym_expression_statement] = STATE(1605), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(490), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(492), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(366), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(378), + [aux_sym_do_statement_token1] = ACTIONS(380), + [aux_sym_for_statement_token1] = ACTIONS(382), + [aux_sym_foreach_statement_token1] = ACTIONS(384), + [aux_sym_if_statement_token1] = ACTIONS(386), + [aux_sym_match_expression_token1] = ACTIONS(249), + [aux_sym_switch_statement_token1] = ACTIONS(388), + [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(494), + [sym_heredoc] = ACTIONS(279), + }, + [48] = { + [sym_text_interpolation] = STATE(48), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(496), + [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), + }, + [49] = { + [sym_text_interpolation] = STATE(49), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(496), + [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), + }, + [50] = { + [sym_text_interpolation] = STATE(50), [sym_empty_statement] = STATE(439), [sym_function_static_declaration] = STATE(439), [sym_global_declaration] = STATE(439), [sym_namespace_definition] = STATE(439), [sym_namespace_use_declaration] = STATE(439), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), [sym_trait_declaration] = STATE(439), [sym_interface_declaration] = STATE(439), [sym_class_declaration] = STATE(439), - [sym_class_modifier] = STATE(1906), + [sym_class_modifier] = STATE(1955), [sym_const_declaration] = STATE(439), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), [sym_function_definition] = STATE(439), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), [sym_echo_statement] = STATE(439), [sym_unset_statement] = STATE(439), [sym_declare_statement] = STATE(439), @@ -13775,44708 +15663,45141 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_continue_statement] = STATE(439), [sym_break_statement] = STATE(439), [sym_return_statement] = STATE(439), - [sym_throw_expression] = STATE(845), + [sym_throw_expression] = STATE(893), [sym_while_statement] = STATE(439), [sym_do_statement] = STATE(439), [sym_for_statement] = STATE(439), [sym_foreach_statement] = STATE(439), [sym_if_statement] = STATE(439), - [sym_match_expression] = STATE(848), + [sym_match_expression] = STATE(898), [sym_switch_statement] = STATE(439), [sym_compound_statement] = STATE(439), [sym_named_label_statement] = STATE(439), [sym_expression_statement] = STATE(439), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(451), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(453), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(455), - [sym_heredoc] = ACTIONS(276), - }, - [42] = { - [sym_text_interpolation] = STATE(42), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(40), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(457), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), - }, - [43] = { - [sym_text_interpolation] = STATE(43), - [sym_empty_statement] = STATE(1591), - [sym_function_static_declaration] = STATE(1591), - [sym_global_declaration] = STATE(1591), - [sym_namespace_definition] = STATE(1591), - [sym_namespace_use_declaration] = STATE(1591), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1591), - [sym_interface_declaration] = STATE(1591), - [sym_class_declaration] = STATE(1591), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1591), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1591), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1591), - [sym_unset_statement] = STATE(1591), - [sym_declare_statement] = STATE(1591), - [sym_try_statement] = STATE(1591), - [sym_goto_statement] = STATE(1591), - [sym_continue_statement] = STATE(1591), - [sym_break_statement] = STATE(1591), - [sym_return_statement] = STATE(1591), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1591), - [sym_do_statement] = STATE(1591), - [sym_for_statement] = STATE(1591), - [sym_foreach_statement] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1591), - [sym_compound_statement] = STATE(1591), - [sym_named_label_statement] = STATE(1591), - [sym_expression_statement] = STATE(1591), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(459), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(461), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(463), - [sym_heredoc] = ACTIONS(276), - }, - [44] = { - [sym_text_interpolation] = STATE(44), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [aux_sym_declare_statement_token1] = ACTIONS(465), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), - }, - [45] = { - [sym_text_interpolation] = STATE(45), - [sym_empty_statement] = STATE(466), - [sym_function_static_declaration] = STATE(466), - [sym_global_declaration] = STATE(466), - [sym_namespace_definition] = STATE(466), - [sym_namespace_use_declaration] = STATE(466), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(466), - [sym_interface_declaration] = STATE(466), - [sym_class_declaration] = STATE(466), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(466), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(466), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(466), - [sym_unset_statement] = STATE(466), - [sym_declare_statement] = STATE(466), - [sym_try_statement] = STATE(466), - [sym_goto_statement] = STATE(466), - [sym_continue_statement] = STATE(466), - [sym_break_statement] = STATE(466), - [sym_return_statement] = STATE(466), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(466), - [sym_do_statement] = STATE(466), - [sym_for_statement] = STATE(466), - [sym_foreach_statement] = STATE(466), - [sym_if_statement] = STATE(466), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(466), - [sym_compound_statement] = STATE(466), - [sym_named_label_statement] = STATE(466), - [sym_expression_statement] = STATE(466), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(467), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(469), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(471), - [sym_heredoc] = ACTIONS(276), - }, - [46] = { - [sym_text_interpolation] = STATE(46), - [sym_empty_statement] = STATE(1564), - [sym_function_static_declaration] = STATE(1564), - [sym_global_declaration] = STATE(1564), - [sym_namespace_definition] = STATE(1564), - [sym_namespace_use_declaration] = STATE(1564), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1564), - [sym_interface_declaration] = STATE(1564), - [sym_class_declaration] = STATE(1564), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1564), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1564), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1564), - [sym_unset_statement] = STATE(1564), - [sym_declare_statement] = STATE(1564), - [sym_try_statement] = STATE(1564), - [sym_goto_statement] = STATE(1564), - [sym_continue_statement] = STATE(1564), - [sym_break_statement] = STATE(1564), - [sym_return_statement] = STATE(1564), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1564), - [sym_do_statement] = STATE(1564), - [sym_for_statement] = STATE(1564), - [sym_foreach_statement] = STATE(1564), - [sym_if_statement] = STATE(1564), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1564), - [sym_compound_statement] = STATE(1564), - [sym_named_label_statement] = STATE(1564), - [sym_expression_statement] = STATE(1564), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(473), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(475), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(477), - [sym_heredoc] = ACTIONS(276), - }, - [47] = { - [sym_text_interpolation] = STATE(47), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(44), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [aux_sym_declare_statement_token1] = ACTIONS(479), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), - }, - [48] = { - [sym_text_interpolation] = STATE(48), - [sym_empty_statement] = STATE(1518), - [sym_function_static_declaration] = STATE(1518), - [sym_global_declaration] = STATE(1518), - [sym_namespace_definition] = STATE(1518), - [sym_namespace_use_declaration] = STATE(1518), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1518), - [sym_interface_declaration] = STATE(1518), - [sym_class_declaration] = STATE(1518), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1518), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1518), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1518), - [sym_unset_statement] = STATE(1518), - [sym_declare_statement] = STATE(1518), - [sym_try_statement] = STATE(1518), - [sym_goto_statement] = STATE(1518), - [sym_continue_statement] = STATE(1518), - [sym_break_statement] = STATE(1518), - [sym_return_statement] = STATE(1518), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1518), - [sym_do_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_foreach_statement] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1518), - [sym_compound_statement] = STATE(1518), - [sym_named_label_statement] = STATE(1518), - [sym_expression_statement] = STATE(1518), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(481), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(483), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(485), - [sym_heredoc] = ACTIONS(276), - }, - [49] = { - [sym_text_interpolation] = STATE(49), - [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(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(488), - [sym_interface_declaration] = STATE(488), - [sym_class_declaration] = STATE(488), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(488), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(488), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [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(845), - [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(848), - [sym_switch_statement] = STATE(488), - [sym_compound_statement] = STATE(488), - [sym_named_label_statement] = STATE(488), - [sym_expression_statement] = STATE(488), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(487), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(489), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(491), - [sym_heredoc] = ACTIONS(276), - }, - [50] = { - [sym_text_interpolation] = STATE(50), - [sym_empty_statement] = STATE(425), - [sym_function_static_declaration] = STATE(425), - [sym_global_declaration] = STATE(425), - [sym_namespace_definition] = STATE(425), - [sym_namespace_use_declaration] = STATE(425), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(425), - [sym_interface_declaration] = STATE(425), - [sym_class_declaration] = STATE(425), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(425), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(425), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(425), - [sym_unset_statement] = STATE(425), - [sym_declare_statement] = STATE(425), - [sym_try_statement] = STATE(425), - [sym_goto_statement] = STATE(425), - [sym_continue_statement] = STATE(425), - [sym_break_statement] = STATE(425), - [sym_return_statement] = STATE(425), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(425), - [sym_do_statement] = STATE(425), - [sym_for_statement] = STATE(425), - [sym_foreach_statement] = STATE(425), - [sym_if_statement] = STATE(425), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(425), - [sym_compound_statement] = STATE(425), - [sym_named_label_statement] = STATE(425), - [sym_expression_statement] = STATE(425), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(443), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(445), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(181), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(418), + [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(420), + [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_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(447), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(422), + [sym_heredoc] = ACTIONS(279), }, [51] = { [sym_text_interpolation] = STATE(51), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(81), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(493), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(498), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [52] = { [sym_text_interpolation] = STATE(52), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(409), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(69), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(482), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [53] = { [sym_text_interpolation] = STATE(53), - [sym_empty_statement] = STATE(1217), - [sym_function_static_declaration] = STATE(1217), - [sym_global_declaration] = STATE(1217), - [sym_namespace_definition] = STATE(1217), - [sym_namespace_use_declaration] = STATE(1217), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1217), - [sym_interface_declaration] = STATE(1217), - [sym_class_declaration] = STATE(1217), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1217), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1217), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1217), - [sym_unset_statement] = STATE(1217), - [sym_declare_statement] = STATE(1217), - [sym_try_statement] = STATE(1217), - [sym_goto_statement] = STATE(1217), - [sym_continue_statement] = STATE(1217), - [sym_break_statement] = STATE(1217), - [sym_return_statement] = STATE(1217), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1217), - [sym_do_statement] = STATE(1217), - [sym_for_statement] = STATE(1217), - [sym_foreach_statement] = STATE(1217), - [sym_if_statement] = STATE(1217), - [sym_colon_block] = STATE(1187), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1217), - [sym_compound_statement] = STATE(1217), - [sym_named_label_statement] = STATE(1217), - [sym_expression_statement] = STATE(1217), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(495), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1664), + [sym_function_static_declaration] = STATE(1664), + [sym_global_declaration] = STATE(1664), + [sym_namespace_definition] = STATE(1664), + [sym_namespace_use_declaration] = STATE(1664), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1664), + [sym_interface_declaration] = STATE(1664), + [sym_class_declaration] = STATE(1664), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1664), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1664), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1664), + [sym_unset_statement] = STATE(1664), + [sym_declare_statement] = STATE(1664), + [sym_try_statement] = STATE(1664), + [sym_goto_statement] = STATE(1664), + [sym_continue_statement] = STATE(1664), + [sym_break_statement] = STATE(1664), + [sym_return_statement] = STATE(1664), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1664), + [sym_do_statement] = STATE(1664), + [sym_for_statement] = STATE(1664), + [sym_foreach_statement] = STATE(1664), + [sym_if_statement] = STATE(1664), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1664), + [sym_compound_statement] = STATE(1664), + [sym_named_label_statement] = STATE(1664), + [sym_expression_statement] = STATE(1664), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(500), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(502), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(366), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(378), + [aux_sym_do_statement_token1] = ACTIONS(380), + [aux_sym_for_statement_token1] = ACTIONS(382), + [aux_sym_foreach_statement_token1] = ACTIONS(384), + [aux_sym_if_statement_token1] = ACTIONS(386), + [aux_sym_match_expression_token1] = ACTIONS(249), + [aux_sym_switch_statement_token1] = ACTIONS(388), + [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(276), + [sym__automatic_semicolon] = ACTIONS(504), + [sym_heredoc] = ACTIONS(279), }, [54] = { [sym_text_interpolation] = STATE(54), - [sym_empty_statement] = STATE(1518), - [sym_function_static_declaration] = STATE(1518), - [sym_global_declaration] = STATE(1518), - [sym_namespace_definition] = STATE(1518), - [sym_namespace_use_declaration] = STATE(1518), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1518), - [sym_interface_declaration] = STATE(1518), - [sym_class_declaration] = STATE(1518), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1518), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1518), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1518), - [sym_unset_statement] = STATE(1518), - [sym_declare_statement] = STATE(1518), - [sym_try_statement] = STATE(1518), - [sym_goto_statement] = STATE(1518), - [sym_continue_statement] = STATE(1518), - [sym_break_statement] = STATE(1518), - [sym_return_statement] = STATE(1518), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1518), - [sym_do_statement] = STATE(1518), - [sym_for_statement] = STATE(1518), - [sym_foreach_statement] = STATE(1518), - [sym_if_statement] = STATE(1518), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1518), - [sym_compound_statement] = STATE(1518), - [sym_named_label_statement] = STATE(1518), - [sym_expression_statement] = STATE(1518), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(481), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(483), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(397), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(399), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(401), - [aux_sym_foreach_statement_token1] = ACTIONS(403), - [aux_sym_if_statement_token1] = ACTIONS(405), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(403), + [sym_function_static_declaration] = STATE(403), + [sym_global_declaration] = STATE(403), + [sym_namespace_definition] = STATE(403), + [sym_namespace_use_declaration] = STATE(403), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(403), + [sym_interface_declaration] = STATE(403), + [sym_class_declaration] = STATE(403), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(403), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(403), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(403), + [sym_unset_statement] = STATE(403), + [sym_declare_statement] = STATE(403), + [sym_try_statement] = STATE(403), + [sym_goto_statement] = STATE(403), + [sym_continue_statement] = STATE(403), + [sym_break_statement] = STATE(403), + [sym_return_statement] = STATE(403), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(403), + [sym_do_statement] = STATE(403), + [sym_for_statement] = STATE(403), + [sym_foreach_statement] = STATE(403), + [sym_if_statement] = STATE(403), + [sym_colon_block] = STATE(1286), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(403), + [sym_compound_statement] = STATE(403), + [sym_named_label_statement] = STATE(403), + [sym_expression_statement] = STATE(403), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(506), + [aux_sym_echo_statement_token1] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(485), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [55] = { [sym_text_interpolation] = STATE(55), - [sym_empty_statement] = STATE(1601), - [sym_function_static_declaration] = STATE(1601), - [sym_global_declaration] = STATE(1601), - [sym_namespace_definition] = STATE(1601), - [sym_namespace_use_declaration] = STATE(1601), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1601), - [sym_interface_declaration] = STATE(1601), - [sym_class_declaration] = STATE(1601), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1601), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1601), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1601), - [sym_unset_statement] = STATE(1601), - [sym_declare_statement] = STATE(1601), - [sym_try_statement] = STATE(1601), - [sym_goto_statement] = STATE(1601), - [sym_continue_statement] = STATE(1601), - [sym_break_statement] = STATE(1601), - [sym_return_statement] = STATE(1601), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1601), - [sym_do_statement] = STATE(1601), - [sym_for_statement] = STATE(1601), - [sym_foreach_statement] = STATE(1601), - [sym_if_statement] = STATE(1601), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1601), - [sym_compound_statement] = STATE(1601), - [sym_named_label_statement] = STATE(1601), - [sym_expression_statement] = STATE(1601), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(497), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(499), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(501), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [56] = { [sym_text_interpolation] = STATE(56), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [aux_sym_declare_statement_token1] = ACTIONS(503), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(400), + [sym_function_static_declaration] = STATE(400), + [sym_global_declaration] = STATE(400), + [sym_namespace_definition] = STATE(400), + [sym_namespace_use_declaration] = STATE(400), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(400), + [sym_interface_declaration] = STATE(400), + [sym_class_declaration] = STATE(400), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(400), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(400), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(400), + [sym_unset_statement] = STATE(400), + [sym_declare_statement] = STATE(400), + [sym_try_statement] = STATE(400), + [sym_goto_statement] = STATE(400), + [sym_continue_statement] = STATE(400), + [sym_break_statement] = STATE(400), + [sym_return_statement] = STATE(400), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(400), + [sym_do_statement] = STATE(400), + [sym_for_statement] = STATE(400), + [sym_foreach_statement] = STATE(400), + [sym_if_statement] = STATE(400), + [sym_colon_block] = STATE(1286), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(400), + [sym_compound_statement] = STATE(400), + [sym_named_label_statement] = STATE(400), + [sym_expression_statement] = STATE(400), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(506), + [aux_sym_echo_statement_token1] = ACTIONS(221), + [anon_sym_declare] = ACTIONS(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [57] = { [sym_text_interpolation] = STATE(57), - [sym_empty_statement] = STATE(1469), - [sym_function_static_declaration] = STATE(1469), - [sym_global_declaration] = STATE(1469), - [sym_namespace_definition] = STATE(1469), - [sym_namespace_use_declaration] = STATE(1469), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1469), - [sym_interface_declaration] = STATE(1469), - [sym_class_declaration] = STATE(1469), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1469), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1469), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1469), - [sym_unset_statement] = STATE(1469), - [sym_declare_statement] = STATE(1469), - [sym_try_statement] = STATE(1469), - [sym_goto_statement] = STATE(1469), - [sym_continue_statement] = STATE(1469), - [sym_break_statement] = STATE(1469), - [sym_return_statement] = STATE(1469), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1469), - [sym_do_statement] = STATE(1469), - [sym_for_statement] = STATE(1469), - [sym_foreach_statement] = STATE(1469), - [sym_if_statement] = STATE(1469), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1469), - [sym_compound_statement] = STATE(1469), - [sym_named_label_statement] = STATE(1469), - [sym_expression_statement] = STATE(1469), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(437), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(439), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(60), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(412), + [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__automatic_semicolon] = ACTIONS(441), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [58] = { [sym_text_interpolation] = STATE(58), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), [aux_sym_program_repeat1] = STATE(2), - [ts_builtin_sym_end] = ACTIONS(505), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [59] = { [sym_text_interpolation] = STATE(59), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(52), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(507), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [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(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(446), + [sym_interface_declaration] = STATE(446), + [sym_class_declaration] = STATE(446), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(446), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(446), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [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(893), + [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(898), + [sym_switch_statement] = STATE(446), + [sym_compound_statement] = STATE(446), + [sym_named_label_statement] = STATE(446), + [sym_expression_statement] = STATE(446), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(428), + [sym_heredoc] = ACTIONS(279), }, [60] = { [sym_text_interpolation] = STATE(60), - [sym_empty_statement] = STATE(1564), - [sym_function_static_declaration] = STATE(1564), - [sym_global_declaration] = STATE(1564), - [sym_namespace_definition] = STATE(1564), - [sym_namespace_use_declaration] = STATE(1564), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1564), - [sym_interface_declaration] = STATE(1564), - [sym_class_declaration] = STATE(1564), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1564), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1564), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1564), - [sym_unset_statement] = STATE(1564), - [sym_declare_statement] = STATE(1564), - [sym_try_statement] = STATE(1564), - [sym_goto_statement] = STATE(1564), - [sym_continue_statement] = STATE(1564), - [sym_break_statement] = STATE(1564), - [sym_return_statement] = STATE(1564), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1564), - [sym_do_statement] = STATE(1564), - [sym_for_statement] = STATE(1564), - [sym_foreach_statement] = STATE(1564), - [sym_if_statement] = STATE(1564), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1564), - [sym_compound_statement] = STATE(1564), - [sym_named_label_statement] = STATE(1564), - [sym_expression_statement] = STATE(1564), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(473), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(475), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(397), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(399), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(401), - [aux_sym_foreach_statement_token1] = ACTIONS(403), - [aux_sym_if_statement_token1] = ACTIONS(405), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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__automatic_semicolon] = ACTIONS(477), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [61] = { [sym_text_interpolation] = STATE(61), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(73), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(411), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(62), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [62] = { [sym_text_interpolation] = STATE(62), - [sym_empty_statement] = STATE(477), - [sym_function_static_declaration] = STATE(477), - [sym_global_declaration] = STATE(477), - [sym_namespace_definition] = STATE(477), - [sym_namespace_use_declaration] = STATE(477), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(477), - [sym_interface_declaration] = STATE(477), - [sym_class_declaration] = STATE(477), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(477), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(477), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(477), - [sym_unset_statement] = STATE(477), - [sym_declare_statement] = STATE(477), - [sym_try_statement] = STATE(477), - [sym_goto_statement] = STATE(477), - [sym_continue_statement] = STATE(477), - [sym_break_statement] = STATE(477), - [sym_return_statement] = STATE(477), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(477), - [sym_do_statement] = STATE(477), - [sym_for_statement] = STATE(477), - [sym_foreach_statement] = STATE(477), - [sym_if_statement] = STATE(477), - [sym_colon_block] = STATE(1821), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(477), - [sym_compound_statement] = STATE(477), - [sym_named_label_statement] = STATE(477), - [sym_expression_statement] = STATE(477), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [63] = { [sym_text_interpolation] = STATE(63), - [sym_empty_statement] = STATE(1601), - [sym_function_static_declaration] = STATE(1601), - [sym_global_declaration] = STATE(1601), - [sym_namespace_definition] = STATE(1601), - [sym_namespace_use_declaration] = STATE(1601), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1601), - [sym_interface_declaration] = STATE(1601), - [sym_class_declaration] = STATE(1601), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1601), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1601), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1601), - [sym_unset_statement] = STATE(1601), - [sym_declare_statement] = STATE(1601), - [sym_try_statement] = STATE(1601), - [sym_goto_statement] = STATE(1601), - [sym_continue_statement] = STATE(1601), - [sym_break_statement] = STATE(1601), - [sym_return_statement] = STATE(1601), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1601), - [sym_do_statement] = STATE(1601), - [sym_for_statement] = STATE(1601), - [sym_foreach_statement] = STATE(1601), - [sym_if_statement] = STATE(1601), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1601), - [sym_compound_statement] = STATE(1601), - [sym_named_label_statement] = STATE(1601), - [sym_expression_statement] = STATE(1601), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(497), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(499), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(397), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(399), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(401), - [aux_sym_foreach_statement_token1] = ACTIONS(403), - [aux_sym_if_statement_token1] = ACTIONS(405), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(501), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [64] = { [sym_text_interpolation] = STATE(64), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(56), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [aux_sym_declare_statement_token1] = ACTIONS(509), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1226), + [sym_function_static_declaration] = STATE(1226), + [sym_global_declaration] = STATE(1226), + [sym_namespace_definition] = STATE(1226), + [sym_namespace_use_declaration] = STATE(1226), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1226), + [sym_interface_declaration] = STATE(1226), + [sym_class_declaration] = STATE(1226), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1226), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1226), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1226), + [sym_unset_statement] = STATE(1226), + [sym_declare_statement] = STATE(1226), + [sym_try_statement] = STATE(1226), + [sym_goto_statement] = STATE(1226), + [sym_continue_statement] = STATE(1226), + [sym_break_statement] = STATE(1226), + [sym_return_statement] = STATE(1226), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1226), + [sym_do_statement] = STATE(1226), + [sym_for_statement] = STATE(1226), + [sym_foreach_statement] = STATE(1226), + [sym_if_statement] = STATE(1226), + [sym_colon_block] = STATE(1250), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1226), + [sym_compound_statement] = STATE(1226), + [sym_named_label_statement] = STATE(1226), + [sym_expression_statement] = STATE(1226), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(468), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(506), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [65] = { [sym_text_interpolation] = STATE(65), - [sym_empty_statement] = STATE(1412), - [sym_function_static_declaration] = STATE(1412), - [sym_global_declaration] = STATE(1412), - [sym_namespace_definition] = STATE(1412), - [sym_namespace_use_declaration] = STATE(1412), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1412), - [sym_interface_declaration] = STATE(1412), - [sym_class_declaration] = STATE(1412), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1412), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1412), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1412), - [sym_unset_statement] = STATE(1412), - [sym_declare_statement] = STATE(1412), - [sym_try_statement] = STATE(1412), - [sym_goto_statement] = STATE(1412), - [sym_continue_statement] = STATE(1412), - [sym_break_statement] = STATE(1412), - [sym_return_statement] = STATE(1412), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1412), - [sym_do_statement] = STATE(1412), - [sym_for_statement] = STATE(1412), - [sym_foreach_statement] = STATE(1412), - [sym_if_statement] = STATE(1412), - [sym_colon_block] = STATE(1913), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1412), - [sym_compound_statement] = STATE(1412), - [sym_named_label_statement] = STATE(1412), - [sym_expression_statement] = STATE(1412), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(484), + [sym_function_static_declaration] = STATE(484), + [sym_global_declaration] = STATE(484), + [sym_namespace_definition] = STATE(484), + [sym_namespace_use_declaration] = STATE(484), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(484), + [sym_interface_declaration] = STATE(484), + [sym_class_declaration] = STATE(484), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(484), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(484), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(484), + [sym_unset_statement] = STATE(484), + [sym_declare_statement] = STATE(484), + [sym_try_statement] = STATE(484), + [sym_goto_statement] = STATE(484), + [sym_continue_statement] = STATE(484), + [sym_break_statement] = STATE(484), + [sym_return_statement] = STATE(484), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(484), + [sym_do_statement] = STATE(484), + [sym_for_statement] = STATE(484), + [sym_foreach_statement] = STATE(484), + [sym_if_statement] = STATE(484), + [sym_colon_block] = STATE(1924), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(484), + [sym_compound_statement] = STATE(484), + [sym_named_label_statement] = STATE(484), + [sym_expression_statement] = STATE(484), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [66] = { [sym_text_interpolation] = STATE(66), - [sym_empty_statement] = STATE(439), - [sym_function_static_declaration] = STATE(439), - [sym_global_declaration] = STATE(439), - [sym_namespace_definition] = STATE(439), - [sym_namespace_use_declaration] = STATE(439), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(439), - [sym_interface_declaration] = STATE(439), - [sym_class_declaration] = STATE(439), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(439), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(439), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(439), - [sym_unset_statement] = STATE(439), - [sym_declare_statement] = STATE(439), - [sym_try_statement] = STATE(439), - [sym_goto_statement] = STATE(439), - [sym_continue_statement] = STATE(439), - [sym_break_statement] = STATE(439), - [sym_return_statement] = STATE(439), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(439), - [sym_do_statement] = STATE(439), - [sym_for_statement] = STATE(439), - [sym_foreach_statement] = STATE(439), - [sym_if_statement] = STATE(439), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(439), - [sym_compound_statement] = STATE(439), - [sym_named_label_statement] = STATE(439), - [sym_expression_statement] = STATE(439), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(451), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(453), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(58), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(518), + [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_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(455), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [67] = { [sym_text_interpolation] = STATE(67), - [sym_empty_statement] = STATE(466), - [sym_function_static_declaration] = STATE(466), - [sym_global_declaration] = STATE(466), - [sym_namespace_definition] = STATE(466), - [sym_namespace_use_declaration] = STATE(466), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(466), - [sym_interface_declaration] = STATE(466), - [sym_class_declaration] = STATE(466), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(466), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(466), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(466), - [sym_unset_statement] = STATE(466), - [sym_declare_statement] = STATE(466), - [sym_try_statement] = STATE(466), - [sym_goto_statement] = STATE(466), - [sym_continue_statement] = STATE(466), - [sym_break_statement] = STATE(466), - [sym_return_statement] = STATE(466), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(466), - [sym_do_statement] = STATE(466), - [sym_for_statement] = STATE(466), - [sym_foreach_statement] = STATE(466), - [sym_if_statement] = STATE(466), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(466), - [sym_compound_statement] = STATE(466), - [sym_named_label_statement] = STATE(466), - [sym_expression_statement] = STATE(466), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(467), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(469), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1628), + [sym_function_static_declaration] = STATE(1628), + [sym_global_declaration] = STATE(1628), + [sym_namespace_definition] = STATE(1628), + [sym_namespace_use_declaration] = STATE(1628), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1628), + [sym_interface_declaration] = STATE(1628), + [sym_class_declaration] = STATE(1628), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1628), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1628), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1628), + [sym_unset_statement] = STATE(1628), + [sym_declare_statement] = STATE(1628), + [sym_try_statement] = STATE(1628), + [sym_goto_statement] = STATE(1628), + [sym_continue_statement] = STATE(1628), + [sym_break_statement] = STATE(1628), + [sym_return_statement] = STATE(1628), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1628), + [sym_do_statement] = STATE(1628), + [sym_for_statement] = STATE(1628), + [sym_foreach_statement] = STATE(1628), + [sym_if_statement] = STATE(1628), + [sym_colon_block] = STATE(2054), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1628), + [sym_compound_statement] = STATE(1628), + [sym_named_label_statement] = STATE(1628), + [sym_expression_statement] = STATE(1628), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(468), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(336), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(366), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(378), + [aux_sym_do_statement_token1] = ACTIONS(380), + [aux_sym_for_statement_token1] = ACTIONS(382), + [aux_sym_foreach_statement_token1] = ACTIONS(384), + [aux_sym_if_statement_token1] = ACTIONS(386), + [aux_sym_match_expression_token1] = ACTIONS(249), + [aux_sym_switch_statement_token1] = ACTIONS(388), + [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(471), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [68] = { [sym_text_interpolation] = STATE(68), - [sym_empty_statement] = STATE(1591), - [sym_function_static_declaration] = STATE(1591), - [sym_global_declaration] = STATE(1591), - [sym_namespace_definition] = STATE(1591), - [sym_namespace_use_declaration] = STATE(1591), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1591), - [sym_interface_declaration] = STATE(1591), - [sym_class_declaration] = STATE(1591), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1591), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1591), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1591), - [sym_unset_statement] = STATE(1591), - [sym_declare_statement] = STATE(1591), - [sym_try_statement] = STATE(1591), - [sym_goto_statement] = STATE(1591), - [sym_continue_statement] = STATE(1591), - [sym_break_statement] = STATE(1591), - [sym_return_statement] = STATE(1591), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1591), - [sym_do_statement] = STATE(1591), - [sym_for_statement] = STATE(1591), - [sym_foreach_statement] = STATE(1591), - [sym_if_statement] = STATE(1591), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1591), - [sym_compound_statement] = STATE(1591), - [sym_named_label_statement] = STATE(1591), - [sym_expression_statement] = STATE(1591), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(459), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(461), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(397), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(399), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(401), - [aux_sym_foreach_statement_token1] = ACTIONS(403), - [aux_sym_if_statement_token1] = ACTIONS(405), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1664), + [sym_function_static_declaration] = STATE(1664), + [sym_global_declaration] = STATE(1664), + [sym_namespace_definition] = STATE(1664), + [sym_namespace_use_declaration] = STATE(1664), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1664), + [sym_interface_declaration] = STATE(1664), + [sym_class_declaration] = STATE(1664), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1664), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1664), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1664), + [sym_unset_statement] = STATE(1664), + [sym_declare_statement] = STATE(1664), + [sym_try_statement] = STATE(1664), + [sym_goto_statement] = STATE(1664), + [sym_continue_statement] = STATE(1664), + [sym_break_statement] = STATE(1664), + [sym_return_statement] = STATE(1664), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1664), + [sym_do_statement] = STATE(1664), + [sym_for_statement] = STATE(1664), + [sym_foreach_statement] = STATE(1664), + [sym_if_statement] = STATE(1664), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1664), + [sym_compound_statement] = STATE(1664), + [sym_named_label_statement] = STATE(1664), + [sym_expression_statement] = STATE(1664), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(500), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(502), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(463), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(504), + [sym_heredoc] = ACTIONS(279), }, [69] = { [sym_text_interpolation] = STATE(69), - [sym_empty_statement] = STATE(1229), - [sym_function_static_declaration] = STATE(1229), - [sym_global_declaration] = STATE(1229), - [sym_namespace_definition] = STATE(1229), - [sym_namespace_use_declaration] = STATE(1229), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1229), - [sym_interface_declaration] = STATE(1229), - [sym_class_declaration] = STATE(1229), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1229), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1229), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1229), - [sym_unset_statement] = STATE(1229), - [sym_declare_statement] = STATE(1229), - [sym_try_statement] = STATE(1229), - [sym_goto_statement] = STATE(1229), - [sym_continue_statement] = STATE(1229), - [sym_break_statement] = STATE(1229), - [sym_return_statement] = STATE(1229), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1229), - [sym_do_statement] = STATE(1229), - [sym_for_statement] = STATE(1229), - [sym_foreach_statement] = STATE(1229), - [sym_if_statement] = STATE(1229), - [sym_colon_block] = STATE(1187), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1229), - [sym_compound_statement] = STATE(1229), - [sym_named_label_statement] = STATE(1229), - [sym_expression_statement] = STATE(1229), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [anon_sym_COLON] = ACTIONS(495), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(416), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [70] = { [sym_text_interpolation] = STATE(70), - [sym_empty_statement] = STATE(399), - [sym_function_static_declaration] = STATE(399), - [sym_global_declaration] = STATE(399), - [sym_namespace_definition] = STATE(399), - [sym_namespace_use_declaration] = STATE(399), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(399), - [sym_interface_declaration] = STATE(399), - [sym_class_declaration] = STATE(399), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(399), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(399), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(399), - [sym_unset_statement] = STATE(399), - [sym_declare_statement] = STATE(399), - [sym_try_statement] = STATE(399), - [sym_goto_statement] = STATE(399), - [sym_continue_statement] = STATE(399), - [sym_break_statement] = STATE(399), - [sym_return_statement] = STATE(399), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(399), - [sym_do_statement] = STATE(399), - [sym_for_statement] = STATE(399), - [sym_foreach_statement] = STATE(399), - [sym_if_statement] = STATE(399), - [sym_colon_block] = STATE(1227), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(399), - [sym_compound_statement] = STATE(399), - [sym_named_label_statement] = STATE(399), - [sym_expression_statement] = STATE(399), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(495), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1251), + [sym_function_static_declaration] = STATE(1251), + [sym_global_declaration] = STATE(1251), + [sym_namespace_definition] = STATE(1251), + [sym_namespace_use_declaration] = STATE(1251), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1251), + [sym_interface_declaration] = STATE(1251), + [sym_class_declaration] = STATE(1251), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1251), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1251), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1251), + [sym_unset_statement] = STATE(1251), + [sym_declare_statement] = STATE(1251), + [sym_try_statement] = STATE(1251), + [sym_goto_statement] = STATE(1251), + [sym_continue_statement] = STATE(1251), + [sym_break_statement] = STATE(1251), + [sym_return_statement] = STATE(1251), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1251), + [sym_do_statement] = STATE(1251), + [sym_for_statement] = STATE(1251), + [sym_foreach_statement] = STATE(1251), + [sym_if_statement] = STATE(1251), + [sym_colon_block] = STATE(1250), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1251), + [sym_compound_statement] = STATE(1251), + [sym_named_label_statement] = STATE(1251), + [sym_expression_statement] = STATE(1251), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(468), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(506), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [71] = { [sym_text_interpolation] = STATE(71), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(72), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(511), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(499), + [sym_function_static_declaration] = STATE(499), + [sym_global_declaration] = STATE(499), + [sym_namespace_definition] = STATE(499), + [sym_namespace_use_declaration] = STATE(499), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(499), + [sym_interface_declaration] = STATE(499), + [sym_class_declaration] = STATE(499), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(499), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(499), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(499), + [sym_unset_statement] = STATE(499), + [sym_declare_statement] = STATE(499), + [sym_try_statement] = STATE(499), + [sym_goto_statement] = STATE(499), + [sym_continue_statement] = STATE(499), + [sym_break_statement] = STATE(499), + [sym_return_statement] = STATE(499), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(499), + [sym_do_statement] = STATE(499), + [sym_for_statement] = STATE(499), + [sym_foreach_statement] = STATE(499), + [sym_if_statement] = STATE(499), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(499), + [sym_compound_statement] = STATE(499), + [sym_named_label_statement] = STATE(499), + [sym_expression_statement] = STATE(499), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(181), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(444), + [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(446), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(448), + [sym_heredoc] = ACTIONS(279), }, [72] = { [sym_text_interpolation] = STATE(72), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(513), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(459), + [sym_function_static_declaration] = STATE(459), + [sym_global_declaration] = STATE(459), + [sym_namespace_definition] = STATE(459), + [sym_namespace_use_declaration] = STATE(459), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(459), + [sym_interface_declaration] = STATE(459), + [sym_class_declaration] = STATE(459), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(459), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(459), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(459), + [sym_unset_statement] = STATE(459), + [sym_declare_statement] = STATE(459), + [sym_try_statement] = STATE(459), + [sym_goto_statement] = STATE(459), + [sym_continue_statement] = STATE(459), + [sym_break_statement] = STATE(459), + [sym_return_statement] = STATE(459), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(459), + [sym_do_statement] = STATE(459), + [sym_for_statement] = STATE(459), + [sym_foreach_statement] = STATE(459), + [sym_if_statement] = STATE(459), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(459), + [sym_compound_statement] = STATE(459), + [sym_named_label_statement] = STATE(459), + [sym_expression_statement] = STATE(459), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(181), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(450), + [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(452), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(454), + [sym_heredoc] = ACTIONS(279), }, [73] = { [sym_text_interpolation] = STATE(73), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_for_statement_token2] = ACTIONS(515), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(39), + [aux_sym_attribute_list_repeat2] = STATE(995), + [ts_builtin_sym_end] = ACTIONS(520), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [74] = { [sym_text_interpolation] = STATE(74), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(517), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1605), + [sym_function_static_declaration] = STATE(1605), + [sym_global_declaration] = STATE(1605), + [sym_namespace_definition] = STATE(1605), + [sym_namespace_use_declaration] = STATE(1605), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1605), + [sym_interface_declaration] = STATE(1605), + [sym_class_declaration] = STATE(1605), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1605), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1605), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1605), + [sym_unset_statement] = STATE(1605), + [sym_declare_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_goto_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_foreach_statement] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1605), + [sym_compound_statement] = STATE(1605), + [sym_named_label_statement] = STATE(1605), + [sym_expression_statement] = STATE(1605), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(490), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(492), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(276), + [sym__automatic_semicolon] = ACTIONS(494), + [sym_heredoc] = ACTIONS(279), }, [75] = { [sym_text_interpolation] = STATE(75), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(2), - [ts_builtin_sym_end] = ACTIONS(519), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1568), + [sym_function_static_declaration] = STATE(1568), + [sym_global_declaration] = STATE(1568), + [sym_namespace_definition] = STATE(1568), + [sym_namespace_use_declaration] = STATE(1568), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1568), + [sym_interface_declaration] = STATE(1568), + [sym_class_declaration] = STATE(1568), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1568), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1568), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1568), + [sym_unset_statement] = STATE(1568), + [sym_declare_statement] = STATE(1568), + [sym_try_statement] = STATE(1568), + [sym_goto_statement] = STATE(1568), + [sym_continue_statement] = STATE(1568), + [sym_break_statement] = STATE(1568), + [sym_return_statement] = STATE(1568), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1568), + [sym_do_statement] = STATE(1568), + [sym_for_statement] = STATE(1568), + [sym_foreach_statement] = STATE(1568), + [sym_if_statement] = STATE(1568), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1568), + [sym_compound_statement] = STATE(1568), + [sym_named_label_statement] = STATE(1568), + [sym_expression_statement] = STATE(1568), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(430), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(432), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(276), + [sym__automatic_semicolon] = ACTIONS(434), + [sym_heredoc] = ACTIONS(279), }, [76] = { [sym_text_interpolation] = STATE(76), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(58), - [ts_builtin_sym_end] = ACTIONS(519), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(81), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [77] = { [sym_text_interpolation] = STATE(77), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [aux_sym_program_repeat1] = STATE(74), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(521), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(2), + [aux_sym_attribute_list_repeat2] = STATE(995), + [ts_builtin_sym_end] = ACTIONS(520), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [78] = { [sym_text_interpolation] = STATE(78), - [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(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(488), - [sym_interface_declaration] = STATE(488), - [sym_class_declaration] = STATE(488), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(488), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(488), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [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(845), - [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(848), - [sym_switch_statement] = STATE(488), - [sym_compound_statement] = STATE(488), - [sym_named_label_statement] = STATE(488), - [sym_expression_statement] = STATE(488), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(487), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(489), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1509), + [sym_function_static_declaration] = STATE(1509), + [sym_global_declaration] = STATE(1509), + [sym_namespace_definition] = STATE(1509), + [sym_namespace_use_declaration] = STATE(1509), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1509), + [sym_interface_declaration] = STATE(1509), + [sym_class_declaration] = STATE(1509), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1509), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1509), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1509), + [sym_unset_statement] = STATE(1509), + [sym_declare_statement] = STATE(1509), + [sym_try_statement] = STATE(1509), + [sym_goto_statement] = STATE(1509), + [sym_continue_statement] = STATE(1509), + [sym_break_statement] = STATE(1509), + [sym_return_statement] = STATE(1509), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1509), + [sym_do_statement] = STATE(1509), + [sym_for_statement] = STATE(1509), + [sym_foreach_statement] = STATE(1509), + [sym_if_statement] = STATE(1509), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1509), + [sym_compound_statement] = STATE(1509), + [sym_named_label_statement] = STATE(1509), + [sym_expression_statement] = STATE(1509), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(462), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(464), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(491), - [sym_heredoc] = ACTIONS(276), + [sym__automatic_semicolon] = ACTIONS(466), + [sym_heredoc] = ACTIONS(279), }, [79] = { [sym_text_interpolation] = STATE(79), - [sym_empty_statement] = STATE(397), - [sym_function_static_declaration] = STATE(397), - [sym_global_declaration] = STATE(397), - [sym_namespace_definition] = STATE(397), - [sym_namespace_use_declaration] = STATE(397), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(397), - [sym_interface_declaration] = STATE(397), - [sym_class_declaration] = STATE(397), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(397), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(397), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(397), - [sym_unset_statement] = STATE(397), - [sym_declare_statement] = STATE(397), - [sym_try_statement] = STATE(397), - [sym_goto_statement] = STATE(397), - [sym_continue_statement] = STATE(397), - [sym_break_statement] = STATE(397), - [sym_return_statement] = STATE(397), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(397), - [sym_do_statement] = STATE(397), - [sym_for_statement] = STATE(397), - [sym_foreach_statement] = STATE(397), - [sym_if_statement] = STATE(397), - [sym_colon_block] = STATE(1227), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(397), - [sym_compound_statement] = STATE(397), - [sym_named_label_statement] = STATE(397), - [sym_expression_statement] = STATE(397), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(495), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1554), + [sym_function_static_declaration] = STATE(1554), + [sym_global_declaration] = STATE(1554), + [sym_namespace_definition] = STATE(1554), + [sym_namespace_use_declaration] = STATE(1554), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1554), + [sym_interface_declaration] = STATE(1554), + [sym_class_declaration] = STATE(1554), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1554), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1554), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1554), + [sym_unset_statement] = STATE(1554), + [sym_declare_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_goto_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_foreach_statement] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1554), + [sym_compound_statement] = STATE(1554), + [sym_named_label_statement] = STATE(1554), + [sym_expression_statement] = STATE(1554), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(470), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [anon_sym_COLON] = ACTIONS(472), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(276), + [sym__automatic_semicolon] = ACTIONS(474), + [sym_heredoc] = ACTIONS(279), }, [80] = { [sym_text_interpolation] = STATE(80), - [sym_empty_statement] = STATE(477), - [sym_function_static_declaration] = STATE(477), - [sym_global_declaration] = STATE(477), - [sym_namespace_definition] = STATE(477), - [sym_namespace_use_declaration] = STATE(477), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(477), - [sym_interface_declaration] = STATE(477), - [sym_class_declaration] = STATE(477), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(477), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(477), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(477), - [sym_unset_statement] = STATE(477), - [sym_declare_statement] = STATE(477), - [sym_try_statement] = STATE(477), - [sym_goto_statement] = STATE(477), - [sym_continue_statement] = STATE(477), - [sym_break_statement] = STATE(477), - [sym_return_statement] = STATE(477), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(477), - [sym_do_statement] = STATE(477), - [sym_for_statement] = STATE(477), - [sym_foreach_statement] = STATE(477), - [sym_if_statement] = STATE(477), - [sym_colon_block] = STATE(1821), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(477), - [sym_compound_statement] = STATE(477), - [sym_named_label_statement] = STATE(477), - [sym_expression_statement] = STATE(477), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [anon_sym_COLON] = ACTIONS(333), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_program_repeat1] = STATE(43), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(524), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [81] = { [sym_text_interpolation] = STATE(81), - [sym_empty_statement] = STATE(441), - [sym_function_static_declaration] = STATE(441), - [sym_global_declaration] = STATE(441), - [sym_namespace_definition] = STATE(441), - [sym_namespace_use_declaration] = STATE(441), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(441), - [sym_interface_declaration] = STATE(441), - [sym_class_declaration] = STATE(441), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(441), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(441), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(441), - [sym_unset_statement] = STATE(441), - [sym_declare_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_foreach_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(441), - [sym_compound_statement] = STATE(441), - [sym_named_label_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), + [sym_empty_statement] = STATE(432), + [sym_function_static_declaration] = STATE(432), + [sym_global_declaration] = STATE(432), + [sym_namespace_definition] = STATE(432), + [sym_namespace_use_declaration] = STATE(432), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(432), + [sym_interface_declaration] = STATE(432), + [sym_class_declaration] = STATE(432), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(432), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(432), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(432), + [sym_unset_statement] = STATE(432), + [sym_declare_statement] = STATE(432), + [sym_try_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_foreach_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(432), + [sym_compound_statement] = STATE(432), + [sym_named_label_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), [aux_sym_program_repeat1] = STATE(2), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [anon_sym_RBRACE] = ACTIONS(523), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(526), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [82] = { [sym_text_interpolation] = STATE(82), - [sym_empty_statement] = STATE(464), - [sym_function_static_declaration] = STATE(464), - [sym_global_declaration] = STATE(464), - [sym_namespace_definition] = STATE(464), - [sym_namespace_use_declaration] = STATE(464), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(464), - [sym_interface_declaration] = STATE(464), - [sym_class_declaration] = STATE(464), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(464), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(464), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(464), - [sym_unset_statement] = STATE(464), - [sym_declare_statement] = STATE(464), - [sym_try_statement] = STATE(464), - [sym_goto_statement] = STATE(464), - [sym_continue_statement] = STATE(464), - [sym_break_statement] = STATE(464), - [sym_return_statement] = STATE(464), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(464), - [sym_do_statement] = STATE(464), - [sym_for_statement] = STATE(464), - [sym_foreach_statement] = STATE(464), - [sym_if_statement] = STATE(464), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(464), - [sym_compound_statement] = STATE(464), - [sym_named_label_statement] = STATE(464), - [sym_expression_statement] = STATE(464), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1530), + [sym_function_static_declaration] = STATE(1530), + [sym_global_declaration] = STATE(1530), + [sym_namespace_definition] = STATE(1530), + [sym_namespace_use_declaration] = STATE(1530), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1530), + [sym_interface_declaration] = STATE(1530), + [sym_class_declaration] = STATE(1530), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1530), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1530), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1530), + [sym_unset_statement] = STATE(1530), + [sym_declare_statement] = STATE(1530), + [sym_try_statement] = STATE(1530), + [sym_goto_statement] = STATE(1530), + [sym_continue_statement] = STATE(1530), + [sym_break_statement] = STATE(1530), + [sym_return_statement] = STATE(1530), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1530), + [sym_do_statement] = STATE(1530), + [sym_for_statement] = STATE(1530), + [sym_foreach_statement] = STATE(1530), + [sym_if_statement] = STATE(1530), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1530), + [sym_compound_statement] = STATE(1530), + [sym_named_label_statement] = STATE(1530), + [sym_expression_statement] = STATE(1530), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(468), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [83] = { [sym_text_interpolation] = STATE(83), - [sym_empty_statement] = STATE(1838), - [sym_function_static_declaration] = STATE(1838), - [sym_global_declaration] = STATE(1838), - [sym_namespace_definition] = STATE(1838), - [sym_namespace_use_declaration] = STATE(1838), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1838), - [sym_interface_declaration] = STATE(1838), - [sym_class_declaration] = STATE(1838), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1838), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1838), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1838), - [sym_unset_statement] = STATE(1838), - [sym_declare_statement] = STATE(1838), - [sym_try_statement] = STATE(1838), - [sym_goto_statement] = STATE(1838), - [sym_continue_statement] = STATE(1838), - [sym_break_statement] = STATE(1838), - [sym_return_statement] = STATE(1838), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1838), - [sym_do_statement] = STATE(1838), - [sym_for_statement] = STATE(1838), - [sym_foreach_statement] = STATE(1838), - [sym_if_statement] = STATE(1838), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1838), - [sym_compound_statement] = STATE(1838), - [sym_named_label_statement] = STATE(1838), - [sym_expression_statement] = STATE(1838), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(397), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(399), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(401), - [aux_sym_foreach_statement_token1] = ACTIONS(403), - [aux_sym_if_statement_token1] = ACTIONS(405), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1515), + [sym_function_static_declaration] = STATE(1515), + [sym_global_declaration] = STATE(1515), + [sym_namespace_definition] = STATE(1515), + [sym_namespace_use_declaration] = STATE(1515), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1515), + [sym_interface_declaration] = STATE(1515), + [sym_class_declaration] = STATE(1515), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1515), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1515), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1515), + [sym_unset_statement] = STATE(1515), + [sym_declare_statement] = STATE(1515), + [sym_try_statement] = STATE(1515), + [sym_goto_statement] = STATE(1515), + [sym_continue_statement] = STATE(1515), + [sym_break_statement] = STATE(1515), + [sym_return_statement] = STATE(1515), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1515), + [sym_do_statement] = STATE(1515), + [sym_for_statement] = STATE(1515), + [sym_foreach_statement] = STATE(1515), + [sym_if_statement] = STATE(1515), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1515), + [sym_compound_statement] = STATE(1515), + [sym_named_label_statement] = STATE(1515), + [sym_expression_statement] = STATE(1515), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(468), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(366), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(378), + [aux_sym_do_statement_token1] = ACTIONS(380), + [aux_sym_for_statement_token1] = ACTIONS(382), + [aux_sym_foreach_statement_token1] = ACTIONS(384), + [aux_sym_if_statement_token1] = ACTIONS(386), + [aux_sym_match_expression_token1] = ACTIONS(249), + [aux_sym_switch_statement_token1] = ACTIONS(388), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [84] = { [sym_text_interpolation] = STATE(84), - [sym_empty_statement] = STATE(1853), - [sym_function_static_declaration] = STATE(1853), - [sym_global_declaration] = STATE(1853), - [sym_namespace_definition] = STATE(1853), - [sym_namespace_use_declaration] = STATE(1853), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1853), - [sym_interface_declaration] = STATE(1853), - [sym_class_declaration] = STATE(1853), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1853), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1853), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1853), - [sym_unset_statement] = STATE(1853), - [sym_declare_statement] = STATE(1853), - [sym_try_statement] = STATE(1853), - [sym_goto_statement] = STATE(1853), - [sym_continue_statement] = STATE(1853), - [sym_break_statement] = STATE(1853), - [sym_return_statement] = STATE(1853), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1853), - [sym_do_statement] = STATE(1853), - [sym_for_statement] = STATE(1853), - [sym_foreach_statement] = STATE(1853), - [sym_if_statement] = STATE(1853), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1853), - [sym_compound_statement] = STATE(1853), - [sym_named_label_statement] = STATE(1853), - [sym_expression_statement] = STATE(1853), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(397), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(399), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(401), - [aux_sym_foreach_statement_token1] = ACTIONS(403), - [aux_sym_if_statement_token1] = ACTIONS(405), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1515), + [sym_function_static_declaration] = STATE(1515), + [sym_global_declaration] = STATE(1515), + [sym_namespace_definition] = STATE(1515), + [sym_namespace_use_declaration] = STATE(1515), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1515), + [sym_interface_declaration] = STATE(1515), + [sym_class_declaration] = STATE(1515), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1515), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1515), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1515), + [sym_unset_statement] = STATE(1515), + [sym_declare_statement] = STATE(1515), + [sym_try_statement] = STATE(1515), + [sym_goto_statement] = STATE(1515), + [sym_continue_statement] = STATE(1515), + [sym_break_statement] = STATE(1515), + [sym_return_statement] = STATE(1515), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1515), + [sym_do_statement] = STATE(1515), + [sym_for_statement] = STATE(1515), + [sym_foreach_statement] = STATE(1515), + [sym_if_statement] = STATE(1515), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1515), + [sym_compound_statement] = STATE(1515), + [sym_named_label_statement] = STATE(1515), + [sym_expression_statement] = STATE(1515), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(468), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(400), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(402), + [aux_sym_do_statement_token1] = ACTIONS(380), + [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(388), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [85] = { [sym_text_interpolation] = STATE(85), - [sym_empty_statement] = STATE(497), - [sym_function_static_declaration] = STATE(497), - [sym_global_declaration] = STATE(497), - [sym_namespace_definition] = STATE(497), - [sym_namespace_use_declaration] = STATE(497), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(497), - [sym_interface_declaration] = STATE(497), - [sym_class_declaration] = STATE(497), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(497), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(497), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(497), - [sym_unset_statement] = STATE(497), - [sym_declare_statement] = STATE(497), - [sym_try_statement] = STATE(497), - [sym_goto_statement] = STATE(497), - [sym_continue_statement] = STATE(497), - [sym_break_statement] = STATE(497), - [sym_return_statement] = STATE(497), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(497), - [sym_do_statement] = STATE(497), - [sym_for_statement] = STATE(497), - [sym_foreach_statement] = STATE(497), - [sym_if_statement] = STATE(497), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(497), - [sym_compound_statement] = STATE(497), - [sym_named_label_statement] = STATE(497), - [sym_expression_statement] = STATE(497), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(319), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(321), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(323), - [aux_sym_foreach_statement_token1] = ACTIONS(325), - [aux_sym_if_statement_token1] = ACTIONS(327), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(431), + [sym_function_static_declaration] = STATE(431), + [sym_global_declaration] = STATE(431), + [sym_namespace_definition] = STATE(431), + [sym_namespace_use_declaration] = STATE(431), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(431), + [sym_interface_declaration] = STATE(431), + [sym_class_declaration] = STATE(431), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(431), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(431), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(431), + [sym_unset_statement] = STATE(431), + [sym_declare_statement] = STATE(431), + [sym_try_statement] = STATE(431), + [sym_goto_statement] = STATE(431), + [sym_continue_statement] = STATE(431), + [sym_break_statement] = STATE(431), + [sym_return_statement] = STATE(431), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(431), + [sym_do_statement] = STATE(431), + [sym_for_statement] = STATE(431), + [sym_foreach_statement] = STATE(431), + [sym_if_statement] = STATE(431), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(431), + [sym_compound_statement] = STATE(431), + [sym_named_label_statement] = STATE(431), + [sym_expression_statement] = STATE(431), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [86] = { [sym_text_interpolation] = STATE(86), - [sym_empty_statement] = STATE(1531), - [sym_function_static_declaration] = STATE(1531), - [sym_global_declaration] = STATE(1531), - [sym_namespace_definition] = STATE(1531), - [sym_namespace_use_declaration] = STATE(1531), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1531), - [sym_interface_declaration] = STATE(1531), - [sym_class_declaration] = STATE(1531), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1531), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1531), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1531), - [sym_unset_statement] = STATE(1531), - [sym_declare_statement] = STATE(1531), - [sym_try_statement] = STATE(1531), - [sym_goto_statement] = STATE(1531), - [sym_continue_statement] = STATE(1531), - [sym_break_statement] = STATE(1531), - [sym_return_statement] = STATE(1531), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1531), - [sym_do_statement] = STATE(1531), - [sym_for_statement] = STATE(1531), - [sym_foreach_statement] = STATE(1531), - [sym_if_statement] = STATE(1531), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1531), - [sym_compound_statement] = STATE(1531), - [sym_named_label_statement] = STATE(1531), - [sym_expression_statement] = STATE(1531), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(431), + [sym_function_static_declaration] = STATE(431), + [sym_global_declaration] = STATE(431), + [sym_namespace_definition] = STATE(431), + [sym_namespace_use_declaration] = STATE(431), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(431), + [sym_interface_declaration] = STATE(431), + [sym_class_declaration] = STATE(431), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(431), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(431), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(431), + [sym_unset_statement] = STATE(431), + [sym_declare_statement] = STATE(431), + [sym_try_statement] = STATE(431), + [sym_goto_statement] = STATE(431), + [sym_continue_statement] = STATE(431), + [sym_break_statement] = STATE(431), + [sym_return_statement] = STATE(431), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(431), + [sym_do_statement] = STATE(431), + [sym_for_statement] = STATE(431), + [sym_foreach_statement] = STATE(431), + [sym_if_statement] = STATE(431), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(431), + [sym_compound_statement] = STATE(431), + [sym_named_label_statement] = STATE(431), + [sym_expression_statement] = STATE(431), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(279), }, [87] = { [sym_text_interpolation] = STATE(87), - [sym_empty_statement] = STATE(1490), - [sym_function_static_declaration] = STATE(1490), - [sym_global_declaration] = STATE(1490), - [sym_namespace_definition] = STATE(1490), - [sym_namespace_use_declaration] = STATE(1490), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1490), - [sym_interface_declaration] = STATE(1490), - [sym_class_declaration] = STATE(1490), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1490), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1490), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1490), - [sym_unset_statement] = STATE(1490), - [sym_declare_statement] = STATE(1490), - [sym_try_statement] = STATE(1490), - [sym_goto_statement] = STATE(1490), - [sym_continue_statement] = STATE(1490), - [sym_break_statement] = STATE(1490), - [sym_return_statement] = STATE(1490), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1490), - [sym_do_statement] = STATE(1490), - [sym_for_statement] = STATE(1490), - [sym_foreach_statement] = STATE(1490), - [sym_if_statement] = STATE(1490), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1490), - [sym_compound_statement] = STATE(1490), - [sym_named_label_statement] = STATE(1490), - [sym_expression_statement] = STATE(1490), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(363), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(375), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(379), - [aux_sym_foreach_statement_token1] = ACTIONS(381), - [aux_sym_if_statement_token1] = ACTIONS(383), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(504), + [sym_function_static_declaration] = STATE(504), + [sym_global_declaration] = STATE(504), + [sym_namespace_definition] = STATE(504), + [sym_namespace_use_declaration] = STATE(504), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(504), + [sym_interface_declaration] = STATE(504), + [sym_class_declaration] = STATE(504), + [sym_class_modifier] = STATE(1955), + [sym_const_declaration] = STATE(504), + [sym__const_declaration] = STATE(507), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1948), + [sym_function_definition] = STATE(504), + [sym__function_definition_header] = STATE(1842), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(504), + [sym_unset_statement] = STATE(504), + [sym_declare_statement] = STATE(504), + [sym_try_statement] = STATE(504), + [sym_goto_statement] = STATE(504), + [sym_continue_statement] = STATE(504), + [sym_break_statement] = STATE(504), + [sym_return_statement] = STATE(504), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(504), + [sym_do_statement] = STATE(504), + [sym_for_statement] = STATE(504), + [sym_foreach_statement] = STATE(504), + [sym_if_statement] = STATE(504), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(504), + [sym_compound_statement] = STATE(504), + [sym_named_label_statement] = STATE(504), + [sym_expression_statement] = STATE(504), + [sym__expression] = STATE(1009), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1261), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [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(324), + [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(326), + [aux_sym_do_statement_token1] = ACTIONS(241), + [aux_sym_for_statement_token1] = ACTIONS(328), + [aux_sym_foreach_statement_token1] = ACTIONS(330), + [aux_sym_if_statement_token1] = ACTIONS(332), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [88] = { [sym_text_interpolation] = STATE(88), - [sym_empty_statement] = STATE(1490), - [sym_function_static_declaration] = STATE(1490), - [sym_global_declaration] = STATE(1490), - [sym_namespace_definition] = STATE(1490), - [sym_namespace_use_declaration] = STATE(1490), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(1490), - [sym_interface_declaration] = STATE(1490), - [sym_class_declaration] = STATE(1490), - [sym_class_modifier] = STATE(1847), - [sym_const_declaration] = STATE(1490), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1849), - [sym_function_definition] = STATE(1490), - [sym__function_definition_header] = STATE(1634), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(1490), - [sym_unset_statement] = STATE(1490), - [sym_declare_statement] = STATE(1490), - [sym_try_statement] = STATE(1490), - [sym_goto_statement] = STATE(1490), - [sym_continue_statement] = STATE(1490), - [sym_break_statement] = STATE(1490), - [sym_return_statement] = STATE(1490), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(1490), - [sym_do_statement] = STATE(1490), - [sym_for_statement] = STATE(1490), - [sym_foreach_statement] = STATE(1490), - [sym_if_statement] = STATE(1490), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(1490), - [sym_compound_statement] = STATE(1490), - [sym_named_label_statement] = STATE(1490), - [sym_expression_statement] = STATE(1490), - [sym__expression] = STATE(1007), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(337), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(435), - [aux_sym_function_static_declaration_token1] = ACTIONS(341), - [aux_sym_global_declaration_token1] = ACTIONS(343), - [aux_sym_namespace_definition_token1] = ACTIONS(345), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(347), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(349), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(351), - [aux_sym_trait_declaration_token1] = ACTIONS(353), - [aux_sym_interface_declaration_token1] = ACTIONS(355), - [aux_sym_class_declaration_token1] = ACTIONS(357), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(359), - [aux_sym_echo_statement_token1] = ACTIONS(361), - [anon_sym_declare] = ACTIONS(397), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(365), - [aux_sym_goto_statement_token1] = ACTIONS(367), - [aux_sym_continue_statement_token1] = ACTIONS(369), - [aux_sym_break_statement_token1] = ACTIONS(371), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(373), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(399), - [aux_sym_do_statement_token1] = ACTIONS(377), - [aux_sym_for_statement_token1] = ACTIONS(401), - [aux_sym_foreach_statement_token1] = ACTIONS(403), - [aux_sym_if_statement_token1] = ACTIONS(405), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1967), + [sym_function_static_declaration] = STATE(1967), + [sym_global_declaration] = STATE(1967), + [sym_namespace_definition] = STATE(1967), + [sym_namespace_use_declaration] = STATE(1967), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1967), + [sym_interface_declaration] = STATE(1967), + [sym_class_declaration] = STATE(1967), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1967), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1967), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1967), + [sym_unset_statement] = STATE(1967), + [sym_declare_statement] = STATE(1967), + [sym_try_statement] = STATE(1967), + [sym_goto_statement] = STATE(1967), + [sym_continue_statement] = STATE(1967), + [sym_break_statement] = STATE(1967), + [sym_return_statement] = STATE(1967), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1967), + [sym_do_statement] = STATE(1967), + [sym_for_statement] = STATE(1967), + [sym_foreach_statement] = STATE(1967), + [sym_if_statement] = STATE(1967), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1967), + [sym_compound_statement] = STATE(1967), + [sym_named_label_statement] = STATE(1967), + [sym_expression_statement] = STATE(1967), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(468), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(366), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(378), + [aux_sym_do_statement_token1] = ACTIONS(380), + [aux_sym_for_statement_token1] = ACTIONS(382), + [aux_sym_foreach_statement_token1] = ACTIONS(384), + [aux_sym_if_statement_token1] = ACTIONS(386), + [aux_sym_match_expression_token1] = ACTIONS(249), + [aux_sym_switch_statement_token1] = ACTIONS(388), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [89] = { [sym_text_interpolation] = STATE(89), - [sym_empty_statement] = STATE(497), - [sym_function_static_declaration] = STATE(497), - [sym_global_declaration] = STATE(497), - [sym_namespace_definition] = STATE(497), - [sym_namespace_use_declaration] = STATE(497), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_trait_declaration] = STATE(497), - [sym_interface_declaration] = STATE(497), - [sym_class_declaration] = STATE(497), - [sym_class_modifier] = STATE(1906), - [sym_const_declaration] = STATE(497), - [sym_static_modifier] = STATE(1904), - [sym_visibility_modifier] = STATE(1903), - [sym_function_definition] = STATE(497), - [sym__function_definition_header] = STATE(1658), - [sym_arrow_function] = STATE(845), - [sym_echo_statement] = STATE(497), - [sym_unset_statement] = STATE(497), - [sym_declare_statement] = STATE(497), - [sym_try_statement] = STATE(497), - [sym_goto_statement] = STATE(497), - [sym_continue_statement] = STATE(497), - [sym_break_statement] = STATE(497), - [sym_return_statement] = STATE(497), - [sym_throw_expression] = STATE(845), - [sym_while_statement] = STATE(497), - [sym_do_statement] = STATE(497), - [sym_for_statement] = STATE(497), - [sym_foreach_statement] = STATE(497), - [sym_if_statement] = STATE(497), - [sym_match_expression] = STATE(848), - [sym_switch_statement] = STATE(497), - [sym_compound_statement] = STATE(497), - [sym_named_label_statement] = STATE(497), - [sym_expression_statement] = STATE(497), - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(180), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(182), - [aux_sym_function_static_declaration_token1] = ACTIONS(184), - [aux_sym_global_declaration_token1] = ACTIONS(186), - [aux_sym_namespace_definition_token1] = ACTIONS(188), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(190), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(192), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(194), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_LBRACE] = ACTIONS(198), - [aux_sym_trait_declaration_token1] = ACTIONS(202), - [aux_sym_interface_declaration_token1] = ACTIONS(204), - [aux_sym_class_declaration_token1] = ACTIONS(206), - [aux_sym_class_modifier_token1] = ACTIONS(208), - [aux_sym_class_modifier_token2] = ACTIONS(208), - [aux_sym_visibility_modifier_token1] = ACTIONS(210), - [aux_sym_visibility_modifier_token2] = ACTIONS(210), - [aux_sym_visibility_modifier_token3] = ACTIONS(210), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [anon_sym_unset] = ACTIONS(218), - [aux_sym_echo_statement_token1] = ACTIONS(220), - [anon_sym_declare] = ACTIONS(222), - [sym_float] = ACTIONS(224), - [aux_sym_try_statement_token1] = ACTIONS(226), - [aux_sym_goto_statement_token1] = ACTIONS(228), - [aux_sym_continue_statement_token1] = ACTIONS(230), - [aux_sym_break_statement_token1] = ACTIONS(232), - [sym_integer] = ACTIONS(224), - [aux_sym_return_statement_token1] = ACTIONS(234), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_while_statement_token1] = ACTIONS(238), - [aux_sym_do_statement_token1] = ACTIONS(240), - [aux_sym_for_statement_token1] = ACTIONS(242), - [aux_sym_foreach_statement_token1] = ACTIONS(244), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_match_expression_token1] = ACTIONS(248), - [aux_sym_switch_statement_token1] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), + [sym_empty_statement] = STATE(1975), + [sym_function_static_declaration] = STATE(1975), + [sym_global_declaration] = STATE(1975), + [sym_namespace_definition] = STATE(1975), + [sym_namespace_use_declaration] = STATE(1975), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_trait_declaration] = STATE(1975), + [sym_interface_declaration] = STATE(1975), + [sym_class_declaration] = STATE(1975), + [sym_class_modifier] = STATE(1969), + [sym_const_declaration] = STATE(1975), + [sym__const_declaration] = STATE(1712), + [sym_static_modifier] = STATE(1954), + [sym_visibility_modifier] = STATE(1971), + [sym_function_definition] = STATE(1975), + [sym__function_definition_header] = STATE(1734), + [sym_arrow_function] = STATE(893), + [sym_echo_statement] = STATE(1975), + [sym_unset_statement] = STATE(1975), + [sym_declare_statement] = STATE(1975), + [sym_try_statement] = STATE(1975), + [sym_goto_statement] = STATE(1975), + [sym_continue_statement] = STATE(1975), + [sym_break_statement] = STATE(1975), + [sym_return_statement] = STATE(1975), + [sym_throw_expression] = STATE(893), + [sym_while_statement] = STATE(1975), + [sym_do_statement] = STATE(1975), + [sym_for_statement] = STATE(1975), + [sym_foreach_statement] = STATE(1975), + [sym_if_statement] = STATE(1975), + [sym_match_expression] = STATE(898), + [sym_switch_statement] = STATE(1975), + [sym_compound_statement] = STATE(1975), + [sym_named_label_statement] = STATE(1975), + [sym_expression_statement] = STATE(1975), + [sym__expression] = STATE(1023), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym_attribute_list] = STATE(1235), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [aux_sym_attribute_list_repeat2] = STATE(995), + [sym_name] = ACTIONS(340), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(468), + [aux_sym_function_static_declaration_token1] = ACTIONS(344), + [aux_sym_global_declaration_token1] = ACTIONS(346), + [aux_sym_namespace_definition_token1] = ACTIONS(348), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(350), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(193), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(352), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_LBRACE] = ACTIONS(354), + [aux_sym_trait_declaration_token1] = ACTIONS(356), + [aux_sym_interface_declaration_token1] = ACTIONS(358), + [aux_sym_class_declaration_token1] = ACTIONS(360), + [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(362), + [aux_sym_echo_statement_token1] = ACTIONS(364), + [anon_sym_declare] = ACTIONS(366), + [sym_float] = ACTIONS(225), + [aux_sym_try_statement_token1] = ACTIONS(368), + [aux_sym_goto_statement_token1] = ACTIONS(370), + [aux_sym_continue_statement_token1] = ACTIONS(372), + [aux_sym_break_statement_token1] = ACTIONS(374), + [sym_integer] = ACTIONS(225), + [aux_sym_return_statement_token1] = ACTIONS(376), + [aux_sym_throw_expression_token1] = ACTIONS(237), + [aux_sym_while_statement_token1] = ACTIONS(378), + [aux_sym_do_statement_token1] = ACTIONS(380), + [aux_sym_for_statement_token1] = ACTIONS(382), + [aux_sym_foreach_statement_token1] = ACTIONS(384), + [aux_sym_if_statement_token1] = ACTIONS(386), + [aux_sym_match_expression_token1] = ACTIONS(249), + [aux_sym_switch_statement_token1] = ACTIONS(388), + [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(276), + [sym_heredoc] = ACTIONS(279), }, [90] = { [sym_text_interpolation] = STATE(90), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(758), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(737), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(527), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(537), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_EQ_GT] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(543), - [anon_sym_QMARK] = ACTIONS(535), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_array] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(527), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(555), - [anon_sym_STAR_STAR] = ACTIONS(527), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [anon_sym_from] = ACTIONS(579), - [aux_sym_binary_expression_token1] = ACTIONS(535), - [anon_sym_QMARK_QMARK] = ACTIONS(527), - [aux_sym_binary_expression_token2] = ACTIONS(535), - [aux_sym_binary_expression_token3] = ACTIONS(535), - [aux_sym_binary_expression_token4] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(527), - [anon_sym_AMP_AMP] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_EQ_EQ] = ACTIONS(535), - [anon_sym_BANG_EQ] = ACTIONS(535), - [anon_sym_LT_GT] = ACTIONS(527), - [anon_sym_EQ_EQ_EQ] = ACTIONS(527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(535), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_LT_EQ] = ACTIONS(535), - [anon_sym_GT_EQ] = ACTIONS(527), - [anon_sym_LT_EQ_GT] = ACTIONS(527), - [anon_sym_LT_LT] = ACTIONS(527), - [anon_sym_GT_GT] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(527), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(783), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(763), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [anon_sym_from] = ACTIONS(582), + [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(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [91] = { [sym_text_interpolation] = STATE(91), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(810), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(737), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(527), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(527), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(589), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_EQ_GT] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(535), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_STAR_STAR] = ACTIONS(527), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(527), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [anon_sym_from] = ACTIONS(613), - [aux_sym_binary_expression_token1] = ACTIONS(535), - [anon_sym_QMARK_QMARK] = ACTIONS(527), - [aux_sym_binary_expression_token2] = ACTIONS(535), - [aux_sym_binary_expression_token3] = ACTIONS(535), - [aux_sym_binary_expression_token4] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(527), - [anon_sym_AMP_AMP] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_EQ_EQ] = ACTIONS(535), - [anon_sym_BANG_EQ] = ACTIONS(535), - [anon_sym_LT_GT] = ACTIONS(527), - [anon_sym_EQ_EQ_EQ] = ACTIONS(527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(535), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_LT_EQ] = ACTIONS(535), - [anon_sym_GT_EQ] = ACTIONS(527), - [anon_sym_LT_EQ_GT] = ACTIONS(527), - [anon_sym_LT_LT] = ACTIONS(527), - [anon_sym_GT_GT] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(527), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(862), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(763), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(594), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [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(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_STAR_STAR] = ACTIONS(530), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(530), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_from] = ACTIONS(618), + [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(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [92] = { [sym_text_interpolation] = STATE(92), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(864), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_variadic_unpacking] = STATE(926), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_array_element_initializer] = STATE(865), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(527), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(527), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(629), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_EQ_GT] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_DOT_DOT_DOT] = ACTIONS(631), - [anon_sym_QMARK] = ACTIONS(535), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(256), - [anon_sym_STAR_STAR] = ACTIONS(527), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [anon_sym_from] = ACTIONS(633), - [aux_sym_binary_expression_token1] = ACTIONS(535), - [anon_sym_QMARK_QMARK] = ACTIONS(527), - [aux_sym_binary_expression_token2] = ACTIONS(535), - [aux_sym_binary_expression_token3] = ACTIONS(535), - [aux_sym_binary_expression_token4] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(527), - [anon_sym_AMP_AMP] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_EQ_EQ] = ACTIONS(535), - [anon_sym_BANG_EQ] = ACTIONS(535), - [anon_sym_LT_GT] = ACTIONS(527), - [anon_sym_EQ_EQ_EQ] = ACTIONS(527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(535), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_LT_EQ] = ACTIONS(535), - [anon_sym_GT_EQ] = ACTIONS(527), - [anon_sym_LT_EQ_GT] = ACTIONS(527), - [anon_sym_LT_LT] = ACTIONS(527), - [anon_sym_GT_GT] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(527), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(527), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(948), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_variadic_unpacking] = STATE(912), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [sym_yield_expression] = STATE(898), + [sym_array_element_initializer] = STATE(949), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(530), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(530), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(634), + [aux_sym_arrow_function_token1] = ACTIONS(213), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(636), + [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(638), + [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(592), + [sym__automatic_semicolon] = ACTIONS(530), + [sym_heredoc] = ACTIONS(279), }, [93] = { [sym_text_interpolation] = STATE(93), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(947), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(737), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(527), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(635), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_EQ_GT] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(535), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(647), - [anon_sym_STAR_STAR] = ACTIONS(527), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [anon_sym_from] = ACTIONS(659), - [aux_sym_binary_expression_token1] = ACTIONS(535), - [anon_sym_QMARK_QMARK] = ACTIONS(527), - [aux_sym_binary_expression_token2] = ACTIONS(535), - [aux_sym_binary_expression_token3] = ACTIONS(535), - [aux_sym_binary_expression_token4] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(527), - [anon_sym_AMP_AMP] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_EQ_EQ] = ACTIONS(535), - [anon_sym_BANG_EQ] = ACTIONS(535), - [anon_sym_LT_GT] = ACTIONS(527), - [anon_sym_EQ_EQ_EQ] = ACTIONS(527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(535), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_LT_EQ] = ACTIONS(535), - [anon_sym_GT_EQ] = ACTIONS(527), - [anon_sym_LT_EQ_GT] = ACTIONS(527), - [anon_sym_LT_LT] = ACTIONS(527), - [anon_sym_GT_GT] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_SLASH] = ACTIONS(535), - [anon_sym_PERCENT] = ACTIONS(527), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(971), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(763), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(640), + [aux_sym_arrow_function_token1] = ACTIONS(642), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [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(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_STAR_STAR] = ACTIONS(530), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [anon_sym_from] = ACTIONS(664), + [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(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [94] = { [sym_text_interpolation] = STATE(94), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_cast_type] = STATE(1844), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(669), - [anon_sym_bool] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_binary] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [anon_sym_integer] = ACTIONS(671), - [anon_sym_object] = ACTIONS(671), - [anon_sym_real] = ACTIONS(671), - [anon_sym_unset] = ACTIONS(671), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_cast_type] = STATE(1961), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(674), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_string] = ACTIONS(676), + [anon_sym_binary] = ACTIONS(676), + [anon_sym_boolean] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [anon_sym_integer] = ACTIONS(676), + [anon_sym_object] = ACTIONS(676), + [anon_sym_real] = ACTIONS(676), + [anon_sym_unset] = ACTIONS(676), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [95] = { [sym_text_interpolation] = STATE(95), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_cast_type] = STATE(1815), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(669), - [anon_sym_bool] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_binary] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [anon_sym_integer] = ACTIONS(671), - [anon_sym_object] = ACTIONS(671), - [anon_sym_real] = ACTIONS(671), - [anon_sym_unset] = ACTIONS(671), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_cast_type] = STATE(1937), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(674), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_string] = ACTIONS(676), + [anon_sym_binary] = ACTIONS(676), + [anon_sym_boolean] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [anon_sym_integer] = ACTIONS(676), + [anon_sym_object] = ACTIONS(676), + [anon_sym_real] = ACTIONS(676), + [anon_sym_unset] = ACTIONS(676), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [96] = { [sym_text_interpolation] = STATE(96), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_cast_type] = STATE(1916), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(669), - [anon_sym_bool] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_binary] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [anon_sym_integer] = ACTIONS(671), - [anon_sym_object] = ACTIONS(671), - [anon_sym_real] = ACTIONS(671), - [anon_sym_unset] = ACTIONS(671), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_cast_type] = STATE(1956), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(674), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_string] = ACTIONS(676), + [anon_sym_binary] = ACTIONS(676), + [anon_sym_boolean] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [anon_sym_integer] = ACTIONS(676), + [anon_sym_object] = ACTIONS(676), + [anon_sym_real] = ACTIONS(676), + [anon_sym_unset] = ACTIONS(676), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [97] = { [sym_text_interpolation] = STATE(97), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_cast_type] = STATE(1830), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(669), - [anon_sym_bool] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_binary] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [anon_sym_integer] = ACTIONS(671), - [anon_sym_object] = ACTIONS(671), - [anon_sym_real] = ACTIONS(671), - [anon_sym_unset] = ACTIONS(671), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_cast_type] = STATE(2018), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(674), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_string] = ACTIONS(676), + [anon_sym_binary] = ACTIONS(676), + [anon_sym_boolean] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [anon_sym_integer] = ACTIONS(676), + [anon_sym_object] = ACTIONS(676), + [anon_sym_real] = ACTIONS(676), + [anon_sym_unset] = ACTIONS(676), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [98] = { [sym_text_interpolation] = STATE(98), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_cast_type] = STATE(1835), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(669), - [anon_sym_bool] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_binary] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [anon_sym_integer] = ACTIONS(671), - [anon_sym_object] = ACTIONS(671), - [anon_sym_real] = ACTIONS(671), - [anon_sym_unset] = ACTIONS(671), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_cast_type] = STATE(1962), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(674), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_string] = ACTIONS(676), + [anon_sym_binary] = ACTIONS(676), + [anon_sym_boolean] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [anon_sym_integer] = ACTIONS(676), + [anon_sym_object] = ACTIONS(676), + [anon_sym_real] = ACTIONS(676), + [anon_sym_unset] = ACTIONS(676), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [99] = { [sym_text_interpolation] = STATE(99), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_cast_type] = STATE(1834), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(669), - [anon_sym_bool] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_binary] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [anon_sym_integer] = ACTIONS(671), - [anon_sym_object] = ACTIONS(671), - [anon_sym_real] = ACTIONS(671), - [anon_sym_unset] = ACTIONS(671), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_cast_type] = STATE(2028), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(674), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_string] = ACTIONS(676), + [anon_sym_binary] = ACTIONS(676), + [anon_sym_boolean] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [anon_sym_integer] = ACTIONS(676), + [anon_sym_object] = ACTIONS(676), + [anon_sym_real] = ACTIONS(676), + [anon_sym_unset] = ACTIONS(676), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [100] = { [sym_text_interpolation] = STATE(100), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_cast_type] = STATE(1909), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(669), - [anon_sym_bool] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_binary] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [anon_sym_integer] = ACTIONS(671), - [anon_sym_object] = ACTIONS(671), - [anon_sym_real] = ACTIONS(671), - [anon_sym_unset] = ACTIONS(671), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_cast_type] = STATE(1956), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1044), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(674), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_string] = ACTIONS(676), + [anon_sym_binary] = ACTIONS(676), + [anon_sym_boolean] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [anon_sym_integer] = ACTIONS(676), + [anon_sym_object] = ACTIONS(676), + [anon_sym_real] = ACTIONS(676), + [anon_sym_unset] = ACTIONS(676), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [101] = { [sym_text_interpolation] = STATE(101), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_cast_type] = STATE(1894), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(669), - [anon_sym_bool] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_binary] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [anon_sym_integer] = ACTIONS(671), - [anon_sym_object] = ACTIONS(671), - [anon_sym_real] = ACTIONS(671), - [anon_sym_unset] = ACTIONS(671), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_cast_type] = STATE(2037), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(674), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_string] = ACTIONS(676), + [anon_sym_binary] = ACTIONS(676), + [anon_sym_boolean] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [anon_sym_integer] = ACTIONS(676), + [anon_sym_object] = ACTIONS(676), + [anon_sym_real] = ACTIONS(676), + [anon_sym_unset] = ACTIONS(676), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [102] = { [sym_text_interpolation] = STATE(102), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_cast_type] = STATE(1824), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1056), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(669), - [anon_sym_bool] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_binary] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [anon_sym_integer] = ACTIONS(671), - [anon_sym_object] = ACTIONS(671), - [anon_sym_real] = ACTIONS(671), - [anon_sym_unset] = ACTIONS(671), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_cast_type] = STATE(1941), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(674), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_string] = ACTIONS(676), + [anon_sym_binary] = ACTIONS(676), + [anon_sym_boolean] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [anon_sym_integer] = ACTIONS(676), + [anon_sym_object] = ACTIONS(676), + [anon_sym_real] = ACTIONS(676), + [anon_sym_unset] = ACTIONS(676), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [103] = { [sym_text_interpolation] = STATE(103), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_cast_type] = STATE(1845), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1056), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(669), - [anon_sym_bool] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_binary] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [anon_sym_integer] = ACTIONS(671), - [anon_sym_object] = ACTIONS(671), - [anon_sym_real] = ACTIONS(671), - [anon_sym_unset] = ACTIONS(671), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_cast_type] = STATE(1999), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1044), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(674), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_string] = ACTIONS(676), + [anon_sym_binary] = ACTIONS(676), + [anon_sym_boolean] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [anon_sym_integer] = ACTIONS(676), + [anon_sym_object] = ACTIONS(676), + [anon_sym_real] = ACTIONS(676), + [anon_sym_unset] = ACTIONS(676), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [104] = { [sym_text_interpolation] = STATE(104), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_cast_type] = STATE(1824), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(669), - [anon_sym_bool] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_binary] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [anon_sym_integer] = ACTIONS(671), - [anon_sym_object] = ACTIONS(671), - [anon_sym_real] = ACTIONS(671), - [anon_sym_unset] = ACTIONS(671), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_cast_type] = STATE(1952), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(674), + [anon_sym_bool] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_string] = ACTIONS(676), + [anon_sym_binary] = ACTIONS(676), + [anon_sym_boolean] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [anon_sym_integer] = ACTIONS(676), + [anon_sym_object] = ACTIONS(676), + [anon_sym_real] = ACTIONS(676), + [anon_sym_unset] = ACTIONS(676), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [105] = { [sym_text_interpolation] = STATE(105), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(810), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1449), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(673), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(677), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(862), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1576), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(678), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(682), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [106] = { [sym_text_interpolation] = STATE(106), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(947), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1434), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(679), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(681), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(971), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1564), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(684), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(686), + [aux_sym_arrow_function_token1] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [107] = { [sym_text_interpolation] = STATE(107), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(981), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(567), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(567), - [sym_nullsafe_member_access_expression] = STATE(567), - [sym_scoped_property_access_expression] = STATE(567), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1404), - [sym_function_call_expression] = STATE(531), - [sym_scoped_call_expression] = STATE(531), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(531), - [sym_nullsafe_member_call_expression] = STATE(531), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(531), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(531), - [sym_variable_name] = STATE(531), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1449), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(673), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_RBRACK] = ACTIONS(685), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(994), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(588), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(588), + [sym_nullsafe_member_access_expression] = STATE(588), + [sym_scoped_property_access_expression] = STATE(588), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1385), + [sym_function_call_expression] = STATE(560), + [sym_scoped_call_expression] = STATE(560), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(560), + [sym_nullsafe_member_call_expression] = STATE(560), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(560), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(560), + [sym_variable_name] = STATE(560), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1679), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(690), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_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(692), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [108] = { [sym_text_interpolation] = STATE(108), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(947), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1512), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(687), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(681), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(994), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(588), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(588), + [sym_nullsafe_member_access_expression] = STATE(588), + [sym_scoped_property_access_expression] = STATE(588), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1385), + [sym_function_call_expression] = STATE(560), + [sym_scoped_call_expression] = STATE(560), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(560), + [sym_nullsafe_member_call_expression] = STATE(560), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(560), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(560), + [sym_variable_name] = STATE(560), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1576), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(678), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_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(694), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [109] = { [sym_text_interpolation] = STATE(109), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(981), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(567), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(567), - [sym_nullsafe_member_access_expression] = STATE(567), - [sym_scoped_property_access_expression] = STATE(567), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1404), - [sym_function_call_expression] = STATE(531), - [sym_scoped_call_expression] = STATE(531), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(531), - [sym_nullsafe_member_call_expression] = STATE(531), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(531), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(531), - [sym_variable_name] = STATE(531), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1573), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(691), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_RBRACK] = ACTIONS(693), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(862), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1679), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(690), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(696), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [110] = { [sym_text_interpolation] = STATE(110), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(810), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1573), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(691), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(695), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(994), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(588), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(588), + [sym_nullsafe_member_access_expression] = STATE(588), + [sym_scoped_property_access_expression] = STATE(588), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1385), + [sym_function_call_expression] = STATE(560), + [sym_scoped_call_expression] = STATE(560), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(560), + [sym_nullsafe_member_call_expression] = STATE(560), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(560), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(560), + [sym_variable_name] = STATE(560), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1576), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(678), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [111] = { [sym_text_interpolation] = STATE(111), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(981), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(567), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(567), - [sym_nullsafe_member_access_expression] = STATE(567), - [sym_scoped_property_access_expression] = STATE(567), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1404), - [sym_function_call_expression] = STATE(531), - [sym_scoped_call_expression] = STATE(531), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(531), - [sym_nullsafe_member_call_expression] = STATE(531), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(531), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(531), - [sym_variable_name] = STATE(531), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1573), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(691), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_RBRACK] = ACTIONS(697), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(971), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1542), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(700), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(686), + [aux_sym_arrow_function_token1] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [112] = { [sym_text_interpolation] = STATE(112), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(981), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(567), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(567), - [sym_nullsafe_member_access_expression] = STATE(567), - [sym_scoped_property_access_expression] = STATE(567), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1404), - [sym_function_call_expression] = STATE(531), - [sym_scoped_call_expression] = STATE(531), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(531), - [sym_nullsafe_member_call_expression] = STATE(531), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(531), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(531), - [sym_variable_name] = STATE(531), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1573), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(691), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_RBRACK] = ACTIONS(699), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(994), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(588), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(588), + [sym_nullsafe_member_access_expression] = STATE(588), + [sym_scoped_property_access_expression] = STATE(588), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1385), + [sym_function_call_expression] = STATE(560), + [sym_scoped_call_expression] = STATE(560), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(560), + [sym_nullsafe_member_call_expression] = STATE(560), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(560), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(560), + [sym_variable_name] = STATE(560), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1576), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(678), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_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(704), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [113] = { [sym_text_interpolation] = STATE(113), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(981), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(567), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(567), - [sym_nullsafe_member_access_expression] = STATE(567), - [sym_scoped_property_access_expression] = STATE(567), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1404), - [sym_function_call_expression] = STATE(531), - [sym_scoped_call_expression] = STATE(531), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(531), - [sym_nullsafe_member_call_expression] = STATE(531), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(531), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(531), - [sym_variable_name] = STATE(531), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1573), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(691), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_RBRACK] = ACTIONS(701), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(994), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(588), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(588), + [sym_nullsafe_member_access_expression] = STATE(588), + [sym_scoped_property_access_expression] = STATE(588), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1385), + [sym_function_call_expression] = STATE(560), + [sym_scoped_call_expression] = STATE(560), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(560), + [sym_nullsafe_member_call_expression] = STATE(560), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(560), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(560), + [sym_variable_name] = STATE(560), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1576), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(678), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(536), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_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(706), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [114] = { [sym_text_interpolation] = STATE(114), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(810), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1607), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(703), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(971), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1649), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(686), + [aux_sym_arrow_function_token1] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(708), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [115] = { [sym_text_interpolation] = STATE(115), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(810), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1607), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(705), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym_match_condition_list] = STATE(2032), + [sym_match_conditional_expression] = STATE(1897), + [sym_match_default_expression] = STATE(1897), + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [aux_sym_match_default_expression_token1] = ACTIONS(712), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [116] = { [sym_text_interpolation] = STATE(116), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(947), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1607), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(681), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(862), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1649), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(714), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [117] = { [sym_text_interpolation] = STATE(117), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym_match_condition_list] = STATE(1902), - [sym_match_conditional_expression] = STATE(1734), - [sym_match_default_expression] = STATE(1734), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_RBRACE] = ACTIONS(709), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [aux_sym_match_default_expression_token1] = ACTIONS(711), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(971), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1649), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(686), + [aux_sym_arrow_function_token1] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [118] = { [sym_text_interpolation] = STATE(118), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym_match_condition_list] = STATE(1902), - [sym_match_conditional_expression] = STATE(1734), - [sym_match_default_expression] = STATE(1734), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_RBRACE] = ACTIONS(713), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [aux_sym_match_default_expression_token1] = ACTIONS(711), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(862), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1649), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(716), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [119] = { [sym_text_interpolation] = STATE(119), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(947), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1607), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(681), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym_match_condition_list] = STATE(2032), + [sym_match_conditional_expression] = STATE(1897), + [sym_match_default_expression] = STATE(1897), + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [aux_sym_match_default_expression_token1] = ACTIONS(712), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [120] = { [sym_text_interpolation] = STATE(120), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(810), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1607), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(717), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym_match_condition_list] = STATE(2032), + [sym_match_conditional_expression] = STATE(1897), + [sym_match_default_expression] = STATE(1897), + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(720), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [aux_sym_match_default_expression_token1] = ACTIONS(712), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [121] = { [sym_text_interpolation] = STATE(121), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym_match_condition_list] = STATE(1902), - [sym_match_conditional_expression] = STATE(1734), - [sym_match_default_expression] = STATE(1734), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_RBRACE] = ACTIONS(719), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [aux_sym_match_default_expression_token1] = ACTIONS(711), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(862), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1649), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [122] = { [sym_text_interpolation] = STATE(122), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(947), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1607), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(681), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym_match_condition_list] = STATE(2032), + [sym_match_conditional_expression] = STATE(1897), + [sym_match_default_expression] = STATE(1897), + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [aux_sym_match_default_expression_token1] = ACTIONS(712), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [123] = { [sym_text_interpolation] = STATE(123), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym_match_condition_list] = STATE(1902), - [sym_match_conditional_expression] = STATE(1734), - [sym_match_default_expression] = STATE(1734), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_RBRACE] = ACTIONS(721), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [aux_sym_match_default_expression_token1] = ACTIONS(711), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(971), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1649), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(686), + [aux_sym_arrow_function_token1] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [124] = { [sym_text_interpolation] = STATE(124), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(810), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1607), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(723), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(862), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1649), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [125] = { [sym_text_interpolation] = STATE(125), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(947), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1607), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(681), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(703), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(971), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1649), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(686), + [aux_sym_arrow_function_token1] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [126] = { [sym_text_interpolation] = STATE(126), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym_match_condition_list] = STATE(1902), - [sym_match_conditional_expression] = STATE(1734), - [sym_match_default_expression] = STATE(1734), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [aux_sym_match_default_expression_token1] = ACTIONS(711), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_argument] = STATE(1626), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(1841), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(730), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [127] = { [sym_text_interpolation] = STATE(127), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym_match_condition_list] = STATE(1902), - [sym_match_conditional_expression] = STATE(1565), - [sym_match_default_expression] = STATE(1565), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [aux_sym_match_default_expression_token1] = ACTIONS(711), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(971), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1649), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(686), + [aux_sym_arrow_function_token1] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [128] = { [sym_text_interpolation] = STATE(128), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_argument] = STATE(1464), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(1735), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(725), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym_match_condition_list] = STATE(2032), + [sym_match_conditional_expression] = STATE(1897), + [sym_match_default_expression] = STATE(1897), + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [aux_sym_match_default_expression_token1] = ACTIONS(712), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [129] = { [sym_text_interpolation] = STATE(129), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym_match_condition_list] = STATE(1902), - [sym_match_conditional_expression] = STATE(1411), - [sym_match_default_expression] = STATE(1411), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [aux_sym_match_default_expression_token1] = ACTIONS(711), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_argument] = STATE(1653), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(1841), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(730), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [130] = { [sym_text_interpolation] = STATE(130), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_argument] = STATE(1502), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(1735), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(725), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_argument] = STATE(1589), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(1841), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(730), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [131] = { [sym_text_interpolation] = STATE(131), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(947), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1607), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(681), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(862), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_variadic_unpacking] = STATE(769), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_array_element_initializer] = STATE(1649), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(680), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [132] = { [sym_text_interpolation] = STATE(132), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_argument] = STATE(1536), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(1735), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(725), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_argument] = STATE(1644), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(1841), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(730), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [133] = { [sym_text_interpolation] = STATE(133), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_argument] = STATE(1527), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(1735), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(725), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym_match_condition_list] = STATE(2032), + [sym_match_conditional_expression] = STATE(1496), + [sym_match_default_expression] = STATE(1496), + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [aux_sym_match_default_expression_token1] = ACTIONS(712), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [134] = { [sym_text_interpolation] = STATE(134), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_argument] = STATE(1474), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(1735), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(725), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_argument] = STATE(1714), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(1841), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(730), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [135] = { [sym_text_interpolation] = STATE(135), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_argument] = STATE(1509), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(1735), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(725), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_argument] = STATE(1532), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(1841), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(730), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [136] = { [sym_text_interpolation] = STATE(136), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(810), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_variadic_unpacking] = STATE(746), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_array_element_initializer] = STATE(1607), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(675), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym_match_condition_list] = STATE(2032), + [sym_match_conditional_expression] = STATE(1713), + [sym_match_default_expression] = STATE(1713), + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [aux_sym_match_default_expression_token1] = ACTIONS(712), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [137] = { [sym_text_interpolation] = STATE(137), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1880), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2025), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [138] = { [sym_text_interpolation] = STATE(138), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1901), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(741), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2020), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [139] = { [sym_text_interpolation] = STATE(139), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1879), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(743), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2030), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(748), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [140] = { [sym_text_interpolation] = STATE(140), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1946), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(745), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2051), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [141] = { [sym_text_interpolation] = STATE(141), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1837), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(1938), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [142] = { [sym_text_interpolation] = STATE(142), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1831), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2003), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [143] = { [sym_text_interpolation] = STATE(143), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1800), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2049), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [144] = { [sym_text_interpolation] = STATE(144), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1905), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(753), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(1934), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [145] = { [sym_text_interpolation] = STATE(145), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1877), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2052), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(760), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [146] = { [sym_text_interpolation] = STATE(146), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1941), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(757), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2057), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [147] = { [sym_text_interpolation] = STATE(147), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1826), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(759), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(1921), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [148] = { [sym_text_interpolation] = STATE(148), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1825), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(761), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(1933), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(766), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [149] = { [sym_text_interpolation] = STATE(149), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1823), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(763), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2071), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [150] = { [sym_text_interpolation] = STATE(150), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1926), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(1964), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(770), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [151] = { [sym_text_interpolation] = STATE(151), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1952), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), - }, + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1055), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(584), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(584), + [sym_nullsafe_member_access_expression] = STATE(584), + [sym_scoped_property_access_expression] = STATE(584), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1409), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(556), + [sym_scoped_call_expression] = STATE(556), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(556), + [sym_nullsafe_member_call_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(556), + [sym_variable_name] = STATE(556), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [aux_sym__list_destructing_repeat1] = STATE(1634), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(772), + [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(774), + [anon_sym_RPAREN] = ACTIONS(776), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), + }, [152] = { [sym_text_interpolation] = STATE(152), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1871), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(769), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1013), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_argument] = STATE(1745), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(1841), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(730), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [153] = { [sym_text_interpolation] = STATE(153), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1869), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2060), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(778), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [154] = { [sym_text_interpolation] = STATE(154), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1893), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(773), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2065), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [155] = { [sym_text_interpolation] = STATE(155), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1940), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(775), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2069), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(782), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [156] = { [sym_text_interpolation] = STATE(156), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1936), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(777), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2029), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(784), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [157] = { [sym_text_interpolation] = STATE(157), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1933), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(779), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(1929), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(786), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [158] = { [sym_text_interpolation] = STATE(158), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1931), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(781), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2055), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [159] = { [sym_text_interpolation] = STATE(159), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_argument] = STATE(1703), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(1735), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(725), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(1987), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(790), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [160] = { [sym_text_interpolation] = STATE(160), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1864), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(783), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(1992), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [161] = { [sym_text_interpolation] = STATE(161), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1054), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(566), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(566), - [sym_nullsafe_member_access_expression] = STATE(566), - [sym_scoped_property_access_expression] = STATE(566), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1383), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(541), - [sym_scoped_call_expression] = STATE(541), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(541), - [sym_nullsafe_member_call_expression] = STATE(541), - [sym_subscript_expression] = STATE(541), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(541), - [sym_variable_name] = STATE(541), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [aux_sym__list_destructing_repeat1] = STATE(1445), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(785), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(1994), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(794), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [162] = { [sym_text_interpolation] = STATE(162), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__expressions] = STATE(1881), - [sym_sequence_expression] = STATE(1667), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__expressions] = STATE(2000), + [sym_sequence_expression] = STATE(1759), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [163] = { [sym_text_interpolation] = STATE(163), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(1000), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(793), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(793), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1018), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(798), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym__automatic_semicolon] = ACTIONS(798), + [sym_heredoc] = ACTIONS(279), }, [164] = { [sym_text_interpolation] = STATE(164), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_foreach_pair] = STATE(1937), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(984), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1629), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(795), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1030), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_variadic_unpacking] = STATE(1744), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [165] = { [sym_text_interpolation] = STATE(165), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(797), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(797), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1058), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(590), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(590), + [sym_nullsafe_member_access_expression] = STATE(590), + [sym_scoped_property_access_expression] = STATE(590), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1688), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(576), + [sym_scoped_call_expression] = STATE(576), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(576), + [sym_nullsafe_member_call_expression] = STATE(576), + [sym_subscript_expression] = STATE(576), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(576), + [sym_variable_name] = STATE(576), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [sym_name] = ACTIONS(528), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(800), + [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(774), + [anon_sym_RPAREN] = ACTIONS(800), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [166] = { [sym_text_interpolation] = STATE(166), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(985), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_variadic_unpacking] = STATE(1702), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(641), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_foreach_pair] = STATE(2045), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1012), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(1737), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(802), + [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(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [167] = { [sym_text_interpolation] = STATE(167), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(997), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(799), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(799), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym__expressions] = STATE(1740), + [sym_sequence_expression] = STATE(1844), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1000), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [168] = { [sym_text_interpolation] = STATE(168), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(988), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(801), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(801), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1036), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(804), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym__automatic_semicolon] = ACTIONS(804), + [sym_heredoc] = ACTIONS(279), }, [169] = { [sym_text_interpolation] = STATE(169), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(998), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(803), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(803), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_foreach_pair] = STATE(1996), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1025), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(1783), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(806), + [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(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [170] = { [sym_text_interpolation] = STATE(170), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym__expressions] = STATE(1655), - [sym_sequence_expression] = STATE(1717), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(977), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1035), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(808), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym__automatic_semicolon] = ACTIONS(808), + [sym_heredoc] = ACTIONS(279), }, [171] = { [sym_text_interpolation] = STATE(171), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_foreach_pair] = STATE(1874), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1687), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(805), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1029), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(810), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym__automatic_semicolon] = ACTIONS(810), + [sym_heredoc] = ACTIONS(279), }, [172] = { [sym_text_interpolation] = STATE(172), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym__expressions] = STATE(1713), - [sym_sequence_expression] = STATE(1717), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(977), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1032), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(812), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym__automatic_semicolon] = ACTIONS(812), + [sym_heredoc] = ACTIONS(279), }, [173] = { [sym_text_interpolation] = STATE(173), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_foreach_pair] = STATE(1828), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(993), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1743), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(807), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1004), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(814), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym__automatic_semicolon] = ACTIONS(814), + [sym_heredoc] = ACTIONS(279), }, [174] = { [sym_text_interpolation] = STATE(174), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_foreach_pair] = STATE(1873), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(982), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1682), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(809), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_foreach_pair] = STATE(1936), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(1865), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(816), + [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(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [175] = { [sym_text_interpolation] = STATE(175), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(811), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(811), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym__expressions] = STATE(1847), + [sym_sequence_expression] = STATE(1844), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1000), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [176] = { [sym_text_interpolation] = STATE(176), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1051), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(572), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(572), - [sym_nullsafe_member_access_expression] = STATE(572), - [sym_scoped_property_access_expression] = STATE(572), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1576), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(565), - [sym_scoped_call_expression] = STATE(565), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(565), - [sym_nullsafe_member_call_expression] = STATE(565), - [sym_subscript_expression] = STATE(565), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(565), - [sym_variable_name] = STATE(565), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [anon_sym_COMMA] = ACTIONS(813), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_RPAREN] = ACTIONS(813), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_foreach_pair] = STATE(2056), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1017), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(1730), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(818), + [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(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [177] = { [sym_text_interpolation] = STATE(177), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(969), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(815), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(816), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(820), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [178] = { [sym_text_interpolation] = STATE(178), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(801), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(817), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(779), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(822), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [179] = { [sym_text_interpolation] = STATE(179), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(943), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(819), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_sequence_expression] = STATE(1834), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1016), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [180] = { [sym_text_interpolation] = STATE(180), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_sequence_expression] = STATE(1671), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(979), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_sequence_expression] = STATE(1834), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1033), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [181] = { [sym_text_interpolation] = STATE(181), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1013), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(821), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1045), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(824), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [182] = { [sym_text_interpolation] = STATE(182), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(798), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(823), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(867), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(826), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [183] = { [sym_text_interpolation] = STATE(183), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(801), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(571), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(571), - [sym_nullsafe_member_access_expression] = STATE(571), - [sym_scoped_property_access_expression] = STATE(571), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1317), - [sym_function_call_expression] = STATE(561), - [sym_scoped_call_expression] = STATE(561), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(561), - [sym_nullsafe_member_call_expression] = STATE(561), - [sym_subscript_expression] = STATE(561), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(561), - [sym_variable_name] = STATE(561), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(817), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(831), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(828), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [184] = { [sym_text_interpolation] = STATE(184), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1043), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(825), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1062), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(1815), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(830), + [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(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [185] = { [sym_text_interpolation] = STATE(185), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1047), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(827), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1061), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(832), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [186] = { [sym_text_interpolation] = STATE(186), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1024), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(829), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1081), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [187] = { [sym_text_interpolation] = STATE(187), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(873), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(831), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1052), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [188] = { [sym_text_interpolation] = STATE(188), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1026), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(833), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(942), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [anon_sym_BSLASH] = ACTIONS(197), + [anon_sym_AMP] = ACTIONS(838), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [189] = { [sym_text_interpolation] = STATE(189), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_sequence_expression] = STATE(1727), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1008), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(964), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [190] = { [sym_text_interpolation] = STATE(190), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(819), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(835), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(831), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(594), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(594), + [sym_nullsafe_member_access_expression] = STATE(594), + [sym_scoped_property_access_expression] = STATE(594), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1386), + [sym_function_call_expression] = STATE(563), + [sym_scoped_call_expression] = STATE(563), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(563), + [sym_nullsafe_member_call_expression] = STATE(563), + [sym_subscript_expression] = STATE(563), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(563), + [sym_variable_name] = STATE(563), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(828), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [191] = { [sym_text_interpolation] = STATE(191), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(901), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(837), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1072), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(842), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [192] = { [sym_text_interpolation] = STATE(192), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1038), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_RBRACK] = ACTIONS(839), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(990), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [193] = { [sym_text_interpolation] = STATE(193), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_sequence_expression] = STATE(1727), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(989), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1087), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(846), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [194] = { [sym_text_interpolation] = STATE(194), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(784), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(841), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_sequence_expression] = STATE(1752), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(998), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [195] = { [sym_text_interpolation] = STATE(195), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1029), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(843), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(839), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(848), + [aux_sym_arrow_function_token1] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [196] = { [sym_text_interpolation] = STATE(196), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1009), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1798), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [anon_sym_AMP] = ACTIONS(845), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1047), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(850), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [197] = { [sym_text_interpolation] = STATE(197), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1030), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(847), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1048), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_RBRACK] = ACTIONS(852), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [198] = { [sym_text_interpolation] = STATE(198), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(986), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(825), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [199] = { [sym_text_interpolation] = STATE(199), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(782), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(786), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [200] = { [sym_text_interpolation] = STATE(200), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(786), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(829), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [201] = { [sym_text_interpolation] = STATE(201), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(855), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(828), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [202] = { [sym_text_interpolation] = STATE(202), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(776), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(809), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [203] = { [sym_text_interpolation] = STATE(203), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(774), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(824), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [204] = { [sym_text_interpolation] = STATE(204), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(777), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(833), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [205] = { [sym_text_interpolation] = STATE(205), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(958), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(832), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [206] = { [sym_text_interpolation] = STATE(206), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(779), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(857), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [207] = { [sym_text_interpolation] = STATE(207), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1039), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(837), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [208] = { [sym_text_interpolation] = STATE(208), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(752), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(840), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [209] = { [sym_text_interpolation] = STATE(209), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1050), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1064), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [210] = { [sym_text_interpolation] = STATE(210), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(881), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(841), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [211] = { [sym_text_interpolation] = STATE(211), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(884), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1034), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [212] = { [sym_text_interpolation] = STATE(212), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(885), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(845), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [213] = { [sym_text_interpolation] = STATE(213), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(887), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(846), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [214] = { [sym_text_interpolation] = STATE(214), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(888), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(851), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [215] = { [sym_text_interpolation] = STATE(215), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(889), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1040), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [216] = { [sym_text_interpolation] = STATE(216), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(890), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1014), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [217] = { [sym_text_interpolation] = STATE(217), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(903), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1068), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [218] = { [sym_text_interpolation] = STATE(218), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(891), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(884), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [219] = { [sym_text_interpolation] = STATE(219), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(892), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(848), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [220] = { [sym_text_interpolation] = STATE(220), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(893), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(853), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [221] = { [sym_text_interpolation] = STATE(221), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(895), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(826), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [222] = { [sym_text_interpolation] = STATE(222), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(896), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(849), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [223] = { [sym_text_interpolation] = STATE(223), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(898), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(866), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [224] = { [sym_text_interpolation] = STATE(224), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(902), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1059), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [225] = { [sym_text_interpolation] = STATE(225), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1031), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1070), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [226] = { [sym_text_interpolation] = STATE(226), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(753), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [227] = { [sym_text_interpolation] = STATE(227), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1052), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1021), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [228] = { [sym_text_interpolation] = STATE(228), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(869), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(865), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [229] = { [sym_text_interpolation] = STATE(229), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(959), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(859), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [230] = { [sym_text_interpolation] = STATE(230), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(783), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1038), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [231] = { [sym_text_interpolation] = STATE(231), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(960), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(822), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [232] = { [sym_text_interpolation] = STATE(232), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(897), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(883), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [233] = { [sym_text_interpolation] = STATE(233), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(978), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(909), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [234] = { [sym_text_interpolation] = STATE(234), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(790), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(918), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [235] = { [sym_text_interpolation] = STATE(235), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(791), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(921), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [236] = { [sym_text_interpolation] = STATE(236), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(961), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(927), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [237] = { [sym_text_interpolation] = STATE(237), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(962), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(945), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [238] = { [sym_text_interpolation] = STATE(238), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1034), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(915), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [239] = { [sym_text_interpolation] = STATE(239), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1027), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(878), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [240] = { [sym_text_interpolation] = STATE(240), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(963), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(871), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [241] = { [sym_text_interpolation] = STATE(241), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(868), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(894), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [242] = { [sym_text_interpolation] = STATE(242), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(867), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(897), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [243] = { [sym_text_interpolation] = STATE(243), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(866), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(899), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [244] = { [sym_text_interpolation] = STATE(244), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(956), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(877), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [245] = { [sym_text_interpolation] = STATE(245), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1049), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(876), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [246] = { [sym_text_interpolation] = STATE(246), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1019), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(910), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [247] = { [sym_text_interpolation] = STATE(247), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1020), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(900), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [248] = { [sym_text_interpolation] = STATE(248), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(787), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1051), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [249] = { [sym_text_interpolation] = STATE(249), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(766), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(907), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [250] = { [sym_text_interpolation] = STATE(250), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(992), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(1002), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [251] = { [sym_text_interpolation] = STATE(251), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(863), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1031), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [252] = { [sym_text_interpolation] = STATE(252), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(858), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(814), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [253] = { [sym_text_interpolation] = STATE(253), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(773), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(979), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [254] = { [sym_text_interpolation] = STATE(254), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(765), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(820), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [255] = { [sym_text_interpolation] = STATE(255), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(760), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1084), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [256] = { [sym_text_interpolation] = STATE(256), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(861), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [257] = { [sym_text_interpolation] = STATE(257), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(797), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1088), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [258] = { [sym_text_interpolation] = STATE(258), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(860), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1086), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [259] = { [sym_text_interpolation] = STATE(259), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(965), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1071), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [260] = { [sym_text_interpolation] = STATE(260), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(834), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(819), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [261] = { [sym_text_interpolation] = STATE(261), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(880), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(823), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [262] = { [sym_text_interpolation] = STATE(262), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(796), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1003), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [263] = { [sym_text_interpolation] = STATE(263), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(999), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1067), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [264] = { [sym_text_interpolation] = STATE(264), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1032), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(835), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [265] = { [sym_text_interpolation] = STATE(265), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(966), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(836), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [266] = { [sym_text_interpolation] = STATE(266), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1056), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1015), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [267] = { [sym_text_interpolation] = STATE(267), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(967), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(771), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [268] = { [sym_text_interpolation] = STATE(268), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(975), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(999), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [269] = { [sym_text_interpolation] = STATE(269), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(795), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1073), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [270] = { [sym_text_interpolation] = STATE(270), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(843), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [271] = { [sym_text_interpolation] = STATE(271), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(744), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(847), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [272] = { [sym_text_interpolation] = STATE(272), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(762), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1043), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [273] = { [sym_text_interpolation] = STATE(273), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1059), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(852), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [274] = { [sym_text_interpolation] = STATE(274), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(793), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1063), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [275] = { [sym_text_interpolation] = STATE(275), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(925), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(854), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [276] = { [sym_text_interpolation] = STATE(276), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(752), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1076), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [277] = { [sym_text_interpolation] = STATE(277), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(789), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(850), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [278] = { [sym_text_interpolation] = STATE(278), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(778), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(864), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [279] = { [sym_text_interpolation] = STATE(279), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(971), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1080), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [280] = { [sym_text_interpolation] = STATE(280), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1006), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(996), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [281] = { [sym_text_interpolation] = STATE(281), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(972), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(891), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [282] = { [sym_text_interpolation] = STATE(282), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(973), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1019), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [283] = { [sym_text_interpolation] = STATE(283), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(907), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(863), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [284] = { [sym_text_interpolation] = STATE(284), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(955), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1079), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [285] = { [sym_text_interpolation] = STATE(285), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(952), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(972), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [286] = { [sym_text_interpolation] = STATE(286), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(818), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(926), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [287] = { [sym_text_interpolation] = STATE(287), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(794), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(861), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [288] = { [sym_text_interpolation] = STATE(288), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(951), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(858), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [289] = { [sym_text_interpolation] = STATE(289), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(817), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(928), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [290] = { [sym_text_interpolation] = STATE(290), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(950), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(855), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [291] = { [sym_text_interpolation] = STATE(291), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1014), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1020), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [292] = { [sym_text_interpolation] = STATE(292), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(759), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(807), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [293] = { [sym_text_interpolation] = STATE(293), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(788), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(974), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [294] = { [sym_text_interpolation] = STATE(294), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1018), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1069), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [295] = { [sym_text_interpolation] = STATE(295), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(949), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(906), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [296] = { [sym_text_interpolation] = STATE(296), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(944), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(978), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [297] = { [sym_text_interpolation] = STATE(297), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(937), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(902), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [298] = { [sym_text_interpolation] = STATE(298), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(964), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(812), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [299] = { [sym_text_interpolation] = STATE(299), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(761), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1022), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [300] = { [sym_text_interpolation] = STATE(300), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(835), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(800), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [301] = { [sym_text_interpolation] = STATE(301), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(832), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [302] = { [sym_text_interpolation] = STATE(302), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1053), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1065), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [303] = { [sym_text_interpolation] = STATE(303), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1023), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(801), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [304] = { [sym_text_interpolation] = STATE(304), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1015), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1049), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [305] = { [sym_text_interpolation] = STATE(305), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1011), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(931), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [306] = { [sym_text_interpolation] = STATE(306), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(769), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1039), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [307] = { [sym_text_interpolation] = STATE(307), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(968), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1041), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [308] = { [sym_text_interpolation] = STATE(308), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(954), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(973), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [309] = { [sym_text_interpolation] = STATE(309), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(763), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(968), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [310] = { [sym_text_interpolation] = STATE(310), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(932), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1050), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [311] = { [sym_text_interpolation] = STATE(311), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(837), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(815), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [312] = { [sym_text_interpolation] = STATE(312), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(838), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(808), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [313] = { [sym_text_interpolation] = STATE(313), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(933), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(771), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [314] = { [sym_text_interpolation] = STATE(314), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(771), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1042), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [315] = { [sym_text_interpolation] = STATE(315), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(836), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1053), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [316] = { [sym_text_interpolation] = STATE(316), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(934), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1054), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [317] = { [sym_text_interpolation] = STATE(317), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(935), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(965), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [318] = { [sym_text_interpolation] = STATE(318), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(826), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(886), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [319] = { [sym_text_interpolation] = STATE(319), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(936), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(753), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [320] = { [sym_text_interpolation] = STATE(320), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(744), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(957), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [321] = { [sym_text_interpolation] = STATE(321), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(877), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(961), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [322] = { [sym_text_interpolation] = STATE(322), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(833), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(958), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [323] = { [sym_text_interpolation] = STATE(323), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(938), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(956), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [324] = { [sym_text_interpolation] = STATE(324), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(908), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(813), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [325] = { [sym_text_interpolation] = STATE(325), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(799), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(976), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [326] = { [sym_text_interpolation] = STATE(326), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(764), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(959), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [327] = { [sym_text_interpolation] = STATE(327), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(744), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [328] = { [sym_text_interpolation] = STATE(328), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(831), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(870), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [329] = { [sym_text_interpolation] = STATE(329), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(830), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(992), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [330] = { [sym_text_interpolation] = STATE(330), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(939), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(804), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [331] = { [sym_text_interpolation] = STATE(331), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(828), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(991), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [332] = { [sym_text_interpolation] = STATE(332), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(940), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(989), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [333] = { [sym_text_interpolation] = STATE(333), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1010), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(988), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [334] = { [sym_text_interpolation] = STATE(334), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(839), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1056), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [335] = { [sym_text_interpolation] = STATE(335), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(859), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(987), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [336] = { [sym_text_interpolation] = STATE(336), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1025), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(573), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(573), - [sym_nullsafe_member_access_expression] = STATE(573), - [sym_scoped_property_access_expression] = STATE(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(986), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1594), - [sym_function_call_expression] = STATE(560), - [sym_scoped_call_expression] = STATE(560), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(560), - [sym_nullsafe_member_call_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(560), - [sym_variable_name] = STATE(560), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [337] = { [sym_text_interpolation] = STATE(337), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(825), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(983), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [338] = { [sym_text_interpolation] = STATE(338), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1058), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(982), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [339] = { [sym_text_interpolation] = STATE(339), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(824), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1044), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [340] = { [sym_text_interpolation] = STATE(340), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1016), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(981), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [341] = { [sym_text_interpolation] = STATE(341), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(768), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1057), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [342] = { [sym_text_interpolation] = STATE(342), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(980), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [343] = { [sym_text_interpolation] = STATE(343), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(821), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(950), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [344] = { [sym_text_interpolation] = STATE(344), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(811), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(955), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [345] = { [sym_text_interpolation] = STATE(345), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1055), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(975), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [346] = { [sym_text_interpolation] = STATE(346), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(942), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(967), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [347] = { [sym_text_interpolation] = STATE(347), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(909), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(771), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [348] = { [sym_text_interpolation] = STATE(348), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(802), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1046), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(593), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(593), + [sym_nullsafe_member_access_expression] = STATE(593), + [sym_scoped_property_access_expression] = STATE(593), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1667), + [sym_function_call_expression] = STATE(571), + [sym_scoped_call_expression] = STATE(571), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(571), + [sym_nullsafe_member_call_expression] = STATE(571), + [sym_subscript_expression] = STATE(571), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(571), + [sym_variable_name] = STATE(571), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(774), + [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(854), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [349] = { [sym_text_interpolation] = STATE(349), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(804), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(951), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [350] = { [sym_text_interpolation] = STATE(350), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(803), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(962), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [351] = { [sym_text_interpolation] = STATE(351), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1033), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(952), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [352] = { [sym_text_interpolation] = STATE(352), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1035), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(953), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [353] = { [sym_text_interpolation] = STATE(353), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1040), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(960), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [354] = { [sym_text_interpolation] = STATE(354), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1041), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(830), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [355] = { [sym_text_interpolation] = STATE(355), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(945), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1060), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [356] = { [sym_text_interpolation] = STATE(356), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(805), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(860), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(583), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(583), + [sym_nullsafe_member_access_expression] = STATE(583), + [sym_scoped_property_access_expression] = STATE(583), + [sym_list_literal] = STATE(1963), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(547), + [sym_scoped_call_expression] = STATE(547), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(547), + [sym_nullsafe_member_call_expression] = STATE(547), + [sym_subscript_expression] = STATE(547), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(547), + [sym_variable_name] = STATE(547), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(616), + [aux_sym_include_expression_token1] = ACTIONS(620), + [aux_sym_include_once_expression_token1] = ACTIONS(622), + [aux_sym_require_expression_token1] = ACTIONS(624), + [aux_sym_require_once_expression_token1] = ACTIONS(626), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [357] = { [sym_text_interpolation] = STATE(357), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(913), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1083), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [358] = { [sym_text_interpolation] = STATE(358), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(806), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1037), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [359] = { [sym_text_interpolation] = STATE(359), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(807), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(784), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [360] = { [sym_text_interpolation] = STATE(360), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(809), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(782), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [361] = { [sym_text_interpolation] = STATE(361), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(813), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(753), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [362] = { [sym_text_interpolation] = STATE(362), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(812), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(818), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [363] = { [sym_text_interpolation] = STATE(363), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(991), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1075), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [364] = { [sym_text_interpolation] = STATE(364), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(815), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(781), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [365] = { [sym_text_interpolation] = STATE(365), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(767), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1026), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [366] = { [sym_text_interpolation] = STATE(366), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(787), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [367] = { [sym_text_interpolation] = STATE(367), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(752), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(806), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [368] = { [sym_text_interpolation] = STATE(368), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1044), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(785), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [369] = { [sym_text_interpolation] = STATE(369), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1045), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(803), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [370] = { [sym_text_interpolation] = STATE(370), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(772), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1078), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [371] = { [sym_text_interpolation] = STATE(371), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1048), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1082), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [372] = { [sym_text_interpolation] = STATE(372), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(814), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1085), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [373] = { [sym_text_interpolation] = STATE(373), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1057), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(903), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [374] = { [sym_text_interpolation] = STATE(374), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(820), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(977), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [375] = { [sym_text_interpolation] = STATE(375), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(822), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(984), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [376] = { [sym_text_interpolation] = STATE(376), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(780), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(985), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [377] = { [sym_text_interpolation] = STATE(377), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(914), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(780), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [378] = { [sym_text_interpolation] = STATE(378), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1060), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(798), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [379] = { [sym_text_interpolation] = STATE(379), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(919), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(969), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [380] = { [sym_text_interpolation] = STATE(380), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1046), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1066), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [381] = { [sym_text_interpolation] = STATE(381), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1042), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(932), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [382] = { [sym_text_interpolation] = STATE(382), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(918), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(933), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [383] = { [sym_text_interpolation] = STATE(383), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(829), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(963), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(595), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(595), + [sym_nullsafe_member_access_expression] = STATE(595), + [sym_scoped_property_access_expression] = STATE(595), + [sym_list_literal] = STATE(1935), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(580), + [sym_scoped_call_expression] = STATE(580), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(580), + [sym_nullsafe_member_call_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(580), + [sym_variable_name] = STATE(580), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [aux_sym_match_expression_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_sym_new] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [sym_shell_command_expression] = ACTIONS(570), + [anon_sym_list] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(660), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(662), + [aux_sym_include_expression_token1] = ACTIONS(666), + [aux_sym_include_once_expression_token1] = ACTIONS(668), + [aux_sym_require_expression_token1] = ACTIONS(670), + [aux_sym_require_once_expression_token1] = ACTIONS(672), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [384] = { [sym_text_interpolation] = STATE(384), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1037), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(797), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [385] = { [sym_text_interpolation] = STATE(385), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1021), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(881), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [386] = { [sym_text_interpolation] = STATE(386), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1036), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1077), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [387] = { [sym_text_interpolation] = STATE(387), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(775), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(789), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [388] = { [sym_text_interpolation] = STATE(388), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(983), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(936), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [389] = { [sym_text_interpolation] = STATE(389), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(946), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(576), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(576), - [sym_nullsafe_member_access_expression] = STATE(576), - [sym_scoped_property_access_expression] = STATE(576), - [sym_list_literal] = STATE(1813), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(557), - [sym_scoped_call_expression] = STATE(557), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(557), - [sym_nullsafe_member_call_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(557), - [sym_variable_name] = STATE(557), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(655), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(657), - [aux_sym_include_expression_token1] = ACTIONS(661), - [aux_sym_include_once_expression_token1] = ACTIONS(663), - [aux_sym_require_expression_token1] = ACTIONS(665), - [aux_sym_require_once_expression_token1] = ACTIONS(667), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(802), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [390] = { [sym_text_interpolation] = STATE(390), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym_match_expression] = STATE(848), - [sym__expression] = STATE(980), - [sym__unary_expression] = STATE(849), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(570), - [sym_assignment_expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_augmented_assignment_expression] = STATE(848), - [sym_member_access_expression] = STATE(570), - [sym_nullsafe_member_access_expression] = STATE(570), - [sym_scoped_property_access_expression] = STATE(570), - [sym_list_literal] = STATE(1900), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(538), - [sym_scoped_call_expression] = STATE(538), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(538), - [sym_nullsafe_member_call_expression] = STATE(538), - [sym_subscript_expression] = STATE(538), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(538), - [sym_variable_name] = STATE(538), - [sym_yield_expression] = STATE(848), - [sym_binary_expression] = STATE(848), - [sym_include_expression] = STATE(848), - [sym_include_once_expression] = STATE(848), - [sym_require_expression] = STATE(848), - [sym_require_once_expression] = STATE(848), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [aux_sym_match_expression_token1] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), - [anon_sym_yield] = ACTIONS(280), - [aux_sym_include_expression_token1] = ACTIONS(282), - [aux_sym_include_once_expression_token1] = ACTIONS(284), - [aux_sym_require_expression_token1] = ACTIONS(286), - [aux_sym_require_once_expression_token1] = ACTIONS(288), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(795), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [391] = { [sym_text_interpolation] = STATE(391), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1028), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(790), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [392] = { [sym_text_interpolation] = STATE(392), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(1012), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(534), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(534), - [sym_nullsafe_member_access_expression] = STATE(534), - [sym_scoped_property_access_expression] = STATE(534), - [sym_list_literal] = STATE(1935), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(528), - [sym_scoped_call_expression] = STATE(528), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(528), - [sym_nullsafe_member_call_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(528), - [sym_variable_name] = STATE(528), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(577), - [aux_sym_include_expression_token1] = ACTIONS(581), - [aux_sym_include_once_expression_token1] = ACTIONS(583), - [aux_sym_require_expression_token1] = ACTIONS(585), - [aux_sym_require_once_expression_token1] = ACTIONS(587), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(791), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [393] = { [sym_text_interpolation] = STATE(393), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym_match_expression] = STATE(740), - [sym__expression] = STATE(823), - [sym__unary_expression] = STATE(736), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(554), - [sym_assignment_expression] = STATE(740), - [sym_conditional_expression] = STATE(740), - [sym_augmented_assignment_expression] = STATE(740), - [sym_member_access_expression] = STATE(554), - [sym_nullsafe_member_access_expression] = STATE(554), - [sym_scoped_property_access_expression] = STATE(554), - [sym_list_literal] = STATE(1846), - [sym__list_destructing] = STATE(1659), - [sym__array_destructing] = STATE(1659), - [sym_function_call_expression] = STATE(529), - [sym_scoped_call_expression] = STATE(529), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(529), - [sym_nullsafe_member_call_expression] = STATE(529), - [sym_subscript_expression] = STATE(529), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(529), - [sym_variable_name] = STATE(529), - [sym_yield_expression] = STATE(740), - [sym_binary_expression] = STATE(740), - [sym_include_expression] = STATE(740), - [sym_include_once_expression] = STATE(740), - [sym_require_expression] = STATE(740), - [sym_require_once_expression] = STATE(740), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [aux_sym_match_expression_token1] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_list] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(609), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(611), - [aux_sym_include_expression_token1] = ACTIONS(615), - [aux_sym_include_once_expression_token1] = ACTIONS(617), - [aux_sym_require_expression_token1] = ACTIONS(619), - [aux_sym_require_once_expression_token1] = ACTIONS(621), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym_match_expression] = STATE(898), + [sym__expression] = STATE(901), + [sym__unary_expression] = STATE(919), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(586), + [sym_assignment_expression] = STATE(898), + [sym_conditional_expression] = STATE(898), + [sym_augmented_assignment_expression] = STATE(898), + [sym_member_access_expression] = STATE(586), + [sym_nullsafe_member_access_expression] = STATE(586), + [sym_scoped_property_access_expression] = STATE(586), + [sym_list_literal] = STATE(1920), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(550), + [sym_scoped_call_expression] = STATE(550), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(550), + [sym_nullsafe_member_call_expression] = STATE(550), + [sym_subscript_expression] = STATE(550), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(550), + [sym_variable_name] = STATE(550), + [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(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(592), + [sym_heredoc] = ACTIONS(279), }, [394] = { [sym_text_interpolation] = STATE(394), - [sym_catch_clause] = STATE(404), - [sym_finally_clause] = STATE(404), - [aux_sym_try_statement_repeat1] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(851), - [sym_name] = ACTIONS(853), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(851), - [aux_sym_function_static_declaration_token1] = ACTIONS(853), - [aux_sym_global_declaration_token1] = ACTIONS(853), - [aux_sym_namespace_definition_token1] = ACTIONS(853), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(853), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(853), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(853), - [anon_sym_BSLASH] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(851), - [anon_sym_RBRACE] = ACTIONS(851), - [aux_sym_trait_declaration_token1] = ACTIONS(853), - [aux_sym_interface_declaration_token1] = ACTIONS(853), - [aux_sym_class_declaration_token1] = ACTIONS(853), - [aux_sym_class_modifier_token1] = ACTIONS(853), - [aux_sym_class_modifier_token2] = ACTIONS(853), - [aux_sym_visibility_modifier_token1] = ACTIONS(853), - [aux_sym_visibility_modifier_token2] = ACTIONS(853), - [aux_sym_visibility_modifier_token3] = ACTIONS(853), - [aux_sym_arrow_function_token1] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(851), - [anon_sym_array] = ACTIONS(853), - [anon_sym_unset] = ACTIONS(853), - [aux_sym_echo_statement_token1] = ACTIONS(853), - [anon_sym_declare] = ACTIONS(853), - [aux_sym_declare_statement_token1] = ACTIONS(853), - [sym_float] = ACTIONS(853), - [aux_sym_try_statement_token1] = ACTIONS(853), - [aux_sym_catch_clause_token1] = ACTIONS(855), - [aux_sym_finally_clause_token1] = ACTIONS(858), - [aux_sym_goto_statement_token1] = ACTIONS(853), - [aux_sym_continue_statement_token1] = ACTIONS(853), - [aux_sym_break_statement_token1] = ACTIONS(853), - [sym_integer] = ACTIONS(853), - [aux_sym_return_statement_token1] = ACTIONS(853), - [aux_sym_throw_expression_token1] = ACTIONS(853), - [aux_sym_while_statement_token1] = ACTIONS(853), - [aux_sym_while_statement_token2] = ACTIONS(853), - [aux_sym_do_statement_token1] = ACTIONS(853), - [aux_sym_for_statement_token1] = ACTIONS(853), - [aux_sym_for_statement_token2] = ACTIONS(853), - [aux_sym_foreach_statement_token1] = ACTIONS(853), - [aux_sym_foreach_statement_token2] = ACTIONS(853), - [aux_sym_if_statement_token1] = ACTIONS(853), - [aux_sym_if_statement_token2] = ACTIONS(853), - [aux_sym_else_if_clause_token1] = ACTIONS(853), - [aux_sym_else_clause_token1] = ACTIONS(853), - [aux_sym_match_expression_token1] = ACTIONS(853), - [aux_sym_match_default_expression_token1] = ACTIONS(853), - [aux_sym_switch_statement_token1] = ACTIONS(853), - [aux_sym_switch_block_token1] = ACTIONS(853), - [aux_sym_case_statement_token1] = ACTIONS(853), - [anon_sym_AT] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_TILDE] = ACTIONS(851), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_clone] = ACTIONS(853), - [anon_sym_print] = ACTIONS(853), - [anon_sym_new] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_DASH_DASH] = ACTIONS(851), - [sym_shell_command_expression] = ACTIONS(851), - [anon_sym_list] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_self] = ACTIONS(853), - [anon_sym_parent] = ACTIONS(853), - [sym_string] = ACTIONS(851), - [sym_boolean] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(851), - [anon_sym_yield] = ACTIONS(853), - [aux_sym_include_expression_token1] = ACTIONS(853), - [aux_sym_include_once_expression_token1] = ACTIONS(853), - [aux_sym_require_expression_token1] = ACTIONS(853), - [aux_sym_require_once_expression_token1] = ACTIONS(853), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(851), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(792), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [395] = { [sym_text_interpolation] = STATE(395), - [sym_catch_clause] = STATE(404), - [sym_finally_clause] = STATE(404), - [aux_sym_try_statement_repeat1] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(861), - [sym_name] = ACTIONS(863), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(861), - [aux_sym_function_static_declaration_token1] = ACTIONS(863), - [aux_sym_global_declaration_token1] = ACTIONS(863), - [aux_sym_namespace_definition_token1] = ACTIONS(863), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(863), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(863), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(863), - [anon_sym_BSLASH] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [aux_sym_trait_declaration_token1] = ACTIONS(863), - [aux_sym_interface_declaration_token1] = ACTIONS(863), - [aux_sym_class_declaration_token1] = ACTIONS(863), - [aux_sym_class_modifier_token1] = ACTIONS(863), - [aux_sym_class_modifier_token2] = ACTIONS(863), - [aux_sym_visibility_modifier_token1] = ACTIONS(863), - [aux_sym_visibility_modifier_token2] = ACTIONS(863), - [aux_sym_visibility_modifier_token3] = ACTIONS(863), - [aux_sym_arrow_function_token1] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_array] = ACTIONS(863), - [anon_sym_unset] = ACTIONS(863), - [aux_sym_echo_statement_token1] = ACTIONS(863), - [anon_sym_declare] = ACTIONS(863), - [aux_sym_declare_statement_token1] = ACTIONS(863), - [sym_float] = ACTIONS(863), - [aux_sym_try_statement_token1] = ACTIONS(863), - [aux_sym_catch_clause_token1] = ACTIONS(865), - [aux_sym_finally_clause_token1] = ACTIONS(867), - [aux_sym_goto_statement_token1] = ACTIONS(863), - [aux_sym_continue_statement_token1] = ACTIONS(863), - [aux_sym_break_statement_token1] = ACTIONS(863), - [sym_integer] = ACTIONS(863), - [aux_sym_return_statement_token1] = ACTIONS(863), - [aux_sym_throw_expression_token1] = ACTIONS(863), - [aux_sym_while_statement_token1] = ACTIONS(863), - [aux_sym_while_statement_token2] = ACTIONS(863), - [aux_sym_do_statement_token1] = ACTIONS(863), - [aux_sym_for_statement_token1] = ACTIONS(863), - [aux_sym_for_statement_token2] = ACTIONS(863), - [aux_sym_foreach_statement_token1] = ACTIONS(863), - [aux_sym_foreach_statement_token2] = ACTIONS(863), - [aux_sym_if_statement_token1] = ACTIONS(863), - [aux_sym_if_statement_token2] = ACTIONS(863), - [aux_sym_else_if_clause_token1] = ACTIONS(863), - [aux_sym_else_clause_token1] = ACTIONS(863), - [aux_sym_match_expression_token1] = ACTIONS(863), - [aux_sym_match_default_expression_token1] = ACTIONS(863), - [aux_sym_switch_statement_token1] = ACTIONS(863), - [aux_sym_switch_block_token1] = ACTIONS(863), - [aux_sym_case_statement_token1] = ACTIONS(863), - [anon_sym_AT] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_TILDE] = ACTIONS(861), - [anon_sym_BANG] = ACTIONS(861), - [anon_sym_clone] = ACTIONS(863), - [anon_sym_print] = ACTIONS(863), - [anon_sym_new] = ACTIONS(863), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [sym_shell_command_expression] = ACTIONS(861), - [anon_sym_list] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_self] = ACTIONS(863), - [anon_sym_parent] = ACTIONS(863), - [sym_string] = ACTIONS(861), - [sym_boolean] = ACTIONS(863), - [sym_null] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_yield] = ACTIONS(863), - [aux_sym_include_expression_token1] = ACTIONS(863), - [aux_sym_include_once_expression_token1] = ACTIONS(863), - [aux_sym_require_expression_token1] = ACTIONS(863), - [aux_sym_require_once_expression_token1] = ACTIONS(863), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(861), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(793), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [396] = { [sym_text_interpolation] = STATE(396), - [sym_else_if_clause] = STATE(484), - [sym_else_clause] = STATE(496), - [aux_sym_if_statement_repeat1] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(869), - [sym_name] = ACTIONS(871), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(869), - [aux_sym_function_static_declaration_token1] = ACTIONS(871), - [aux_sym_global_declaration_token1] = ACTIONS(871), - [aux_sym_namespace_definition_token1] = ACTIONS(871), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(871), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(871), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(871), - [anon_sym_BSLASH] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [aux_sym_trait_declaration_token1] = ACTIONS(871), - [aux_sym_interface_declaration_token1] = ACTIONS(871), - [aux_sym_class_declaration_token1] = ACTIONS(871), - [aux_sym_class_modifier_token1] = ACTIONS(871), - [aux_sym_class_modifier_token2] = ACTIONS(871), - [aux_sym_visibility_modifier_token1] = ACTIONS(871), - [aux_sym_visibility_modifier_token2] = ACTIONS(871), - [aux_sym_visibility_modifier_token3] = ACTIONS(871), - [aux_sym_arrow_function_token1] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_array] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(871), - [aux_sym_echo_statement_token1] = ACTIONS(871), - [anon_sym_declare] = ACTIONS(871), - [aux_sym_declare_statement_token1] = ACTIONS(871), - [sym_float] = ACTIONS(871), - [aux_sym_try_statement_token1] = ACTIONS(871), - [aux_sym_goto_statement_token1] = ACTIONS(871), - [aux_sym_continue_statement_token1] = ACTIONS(871), - [aux_sym_break_statement_token1] = ACTIONS(871), - [sym_integer] = ACTIONS(871), - [aux_sym_return_statement_token1] = ACTIONS(871), - [aux_sym_throw_expression_token1] = ACTIONS(871), - [aux_sym_while_statement_token1] = ACTIONS(871), - [aux_sym_while_statement_token2] = ACTIONS(871), - [aux_sym_do_statement_token1] = ACTIONS(871), - [aux_sym_for_statement_token1] = ACTIONS(871), - [aux_sym_for_statement_token2] = ACTIONS(871), - [aux_sym_foreach_statement_token1] = ACTIONS(871), - [aux_sym_foreach_statement_token2] = ACTIONS(871), - [aux_sym_if_statement_token1] = ACTIONS(871), - [aux_sym_if_statement_token2] = ACTIONS(871), - [aux_sym_else_if_clause_token1] = ACTIONS(873), - [aux_sym_else_clause_token1] = ACTIONS(875), - [aux_sym_match_expression_token1] = ACTIONS(871), - [aux_sym_match_default_expression_token1] = ACTIONS(871), - [aux_sym_switch_statement_token1] = ACTIONS(871), - [aux_sym_switch_block_token1] = ACTIONS(871), - [aux_sym_case_statement_token1] = ACTIONS(871), - [anon_sym_AT] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(869), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_clone] = ACTIONS(871), - [anon_sym_print] = ACTIONS(871), - [anon_sym_new] = ACTIONS(871), - [anon_sym_PLUS_PLUS] = ACTIONS(869), - [anon_sym_DASH_DASH] = ACTIONS(869), - [sym_shell_command_expression] = ACTIONS(869), - [anon_sym_list] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_self] = ACTIONS(871), - [anon_sym_parent] = ACTIONS(871), - [sym_string] = ACTIONS(869), - [sym_boolean] = ACTIONS(871), - [sym_null] = ACTIONS(871), - [anon_sym_DOLLAR] = ACTIONS(869), - [anon_sym_yield] = ACTIONS(871), - [aux_sym_include_expression_token1] = ACTIONS(871), - [aux_sym_include_once_expression_token1] = ACTIONS(871), - [aux_sym_require_expression_token1] = ACTIONS(871), - [aux_sym_require_once_expression_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(869), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(1074), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [397] = { [sym_text_interpolation] = STATE(397), - [sym_else_if_clause] = STATE(484), - [sym_else_clause] = STATE(485), - [aux_sym_if_statement_repeat1] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(877), - [sym_name] = ACTIONS(879), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(877), - [aux_sym_function_static_declaration_token1] = ACTIONS(879), - [aux_sym_global_declaration_token1] = ACTIONS(879), - [aux_sym_namespace_definition_token1] = ACTIONS(879), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(879), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(879), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(879), - [anon_sym_BSLASH] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [aux_sym_trait_declaration_token1] = ACTIONS(879), - [aux_sym_interface_declaration_token1] = ACTIONS(879), - [aux_sym_class_declaration_token1] = ACTIONS(879), - [aux_sym_class_modifier_token1] = ACTIONS(879), - [aux_sym_class_modifier_token2] = ACTIONS(879), - [aux_sym_visibility_modifier_token1] = ACTIONS(879), - [aux_sym_visibility_modifier_token2] = ACTIONS(879), - [aux_sym_visibility_modifier_token3] = ACTIONS(879), - [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(873), - [aux_sym_else_clause_token1] = ACTIONS(875), - [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), - [sym_string] = ACTIONS(877), - [sym_boolean] = ACTIONS(879), - [sym_null] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_yield] = ACTIONS(879), - [aux_sym_include_expression_token1] = ACTIONS(879), - [aux_sym_include_once_expression_token1] = ACTIONS(879), - [aux_sym_require_expression_token1] = ACTIONS(879), - [aux_sym_require_once_expression_token1] = ACTIONS(879), - [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(877), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym_match_expression] = STATE(768), + [sym__expression] = STATE(794), + [sym__unary_expression] = STATE(764), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(558), + [sym_assignment_expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_augmented_assignment_expression] = STATE(768), + [sym_member_access_expression] = STATE(558), + [sym_nullsafe_member_access_expression] = STATE(558), + [sym_scoped_property_access_expression] = STATE(558), + [sym_list_literal] = STATE(2048), + [sym__list_destructing] = STATE(1911), + [sym__array_destructing] = STATE(1911), + [sym_function_call_expression] = STATE(545), + [sym_scoped_call_expression] = STATE(545), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(545), + [sym_nullsafe_member_call_expression] = STATE(545), + [sym_subscript_expression] = STATE(545), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(545), + [sym_variable_name] = STATE(545), + [sym_yield_expression] = STATE(768), + [sym_binary_expression] = STATE(768), + [sym_include_expression] = STATE(768), + [sym_include_once_expression] = STATE(768), + [sym_require_expression] = STATE(768), + [sym_require_once_expression] = STATE(768), + [sym__reserved_identifier] = STATE(603), + [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(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [anon_sym_yield] = ACTIONS(580), + [aux_sym_include_expression_token1] = ACTIONS(584), + [aux_sym_include_once_expression_token1] = ACTIONS(586), + [aux_sym_require_expression_token1] = ACTIONS(588), + [aux_sym_require_once_expression_token1] = ACTIONS(590), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), }, [398] = { [sym_text_interpolation] = STATE(398), - [sym_else_if_clause] = STATE(484), - [sym_else_clause] = STATE(496), - [aux_sym_if_statement_repeat1] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(869), - [sym_name] = ACTIONS(871), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(869), - [aux_sym_function_static_declaration_token1] = ACTIONS(871), - [aux_sym_global_declaration_token1] = ACTIONS(871), - [aux_sym_namespace_definition_token1] = ACTIONS(871), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(871), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(871), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(871), - [anon_sym_BSLASH] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [aux_sym_trait_declaration_token1] = ACTIONS(871), - [aux_sym_interface_declaration_token1] = ACTIONS(871), - [aux_sym_class_declaration_token1] = ACTIONS(871), - [aux_sym_class_modifier_token1] = ACTIONS(871), - [aux_sym_class_modifier_token2] = ACTIONS(871), - [aux_sym_visibility_modifier_token1] = ACTIONS(871), - [aux_sym_visibility_modifier_token2] = ACTIONS(871), - [aux_sym_visibility_modifier_token3] = ACTIONS(871), - [aux_sym_arrow_function_token1] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_array] = ACTIONS(871), - [anon_sym_unset] = ACTIONS(871), - [aux_sym_echo_statement_token1] = ACTIONS(871), - [anon_sym_declare] = ACTIONS(871), - [aux_sym_declare_statement_token1] = ACTIONS(871), - [sym_float] = ACTIONS(871), - [aux_sym_try_statement_token1] = ACTIONS(871), - [aux_sym_goto_statement_token1] = ACTIONS(871), - [aux_sym_continue_statement_token1] = ACTIONS(871), - [aux_sym_break_statement_token1] = ACTIONS(871), - [sym_integer] = ACTIONS(871), - [aux_sym_return_statement_token1] = ACTIONS(871), - [aux_sym_throw_expression_token1] = ACTIONS(871), - [aux_sym_while_statement_token1] = ACTIONS(871), - [aux_sym_while_statement_token2] = ACTIONS(871), - [aux_sym_do_statement_token1] = ACTIONS(871), - [aux_sym_for_statement_token1] = ACTIONS(871), - [aux_sym_for_statement_token2] = ACTIONS(871), - [aux_sym_foreach_statement_token1] = ACTIONS(871), - [aux_sym_foreach_statement_token2] = ACTIONS(871), - [aux_sym_if_statement_token1] = ACTIONS(871), - [aux_sym_if_statement_token2] = ACTIONS(871), - [aux_sym_else_if_clause_token1] = ACTIONS(881), - [aux_sym_else_clause_token1] = ACTIONS(884), - [aux_sym_match_expression_token1] = ACTIONS(871), - [aux_sym_match_default_expression_token1] = ACTIONS(871), - [aux_sym_switch_statement_token1] = ACTIONS(871), - [aux_sym_switch_block_token1] = ACTIONS(871), - [aux_sym_case_statement_token1] = ACTIONS(871), - [anon_sym_AT] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(869), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_clone] = ACTIONS(871), - [anon_sym_print] = ACTIONS(871), - [anon_sym_new] = ACTIONS(871), - [anon_sym_PLUS_PLUS] = ACTIONS(869), - [anon_sym_DASH_DASH] = ACTIONS(869), - [sym_shell_command_expression] = ACTIONS(869), - [anon_sym_list] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_self] = ACTIONS(871), - [anon_sym_parent] = ACTIONS(871), - [sym_string] = ACTIONS(869), - [sym_boolean] = ACTIONS(871), - [sym_null] = ACTIONS(871), - [anon_sym_DOLLAR] = ACTIONS(869), - [anon_sym_yield] = ACTIONS(871), - [aux_sym_include_expression_token1] = ACTIONS(871), - [aux_sym_include_once_expression_token1] = ACTIONS(871), - [aux_sym_require_expression_token1] = ACTIONS(871), - [aux_sym_require_once_expression_token1] = ACTIONS(871), + [sym_catch_clause] = STATE(409), + [sym_finally_clause] = STATE(409), + [aux_sym_try_statement_repeat1] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(856), + [sym_name] = ACTIONS(858), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(856), + [aux_sym_function_static_declaration_token1] = ACTIONS(858), + [aux_sym_global_declaration_token1] = ACTIONS(858), + [aux_sym_namespace_definition_token1] = ACTIONS(858), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(858), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(858), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(858), + [anon_sym_BSLASH] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_RBRACE] = ACTIONS(856), + [aux_sym_trait_declaration_token1] = ACTIONS(858), + [aux_sym_interface_declaration_token1] = ACTIONS(858), + [aux_sym_class_declaration_token1] = ACTIONS(858), + [aux_sym_class_modifier_token1] = ACTIONS(858), + [aux_sym_class_modifier_token2] = ACTIONS(858), + [aux_sym_visibility_modifier_token1] = ACTIONS(858), + [aux_sym_visibility_modifier_token2] = ACTIONS(858), + [aux_sym_visibility_modifier_token3] = ACTIONS(858), + [aux_sym_arrow_function_token1] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_array] = ACTIONS(858), + [anon_sym_unset] = ACTIONS(858), + [aux_sym_echo_statement_token1] = ACTIONS(858), + [anon_sym_declare] = ACTIONS(858), + [aux_sym_declare_statement_token1] = ACTIONS(858), + [sym_float] = ACTIONS(858), + [aux_sym_try_statement_token1] = ACTIONS(858), + [aux_sym_catch_clause_token1] = ACTIONS(860), + [aux_sym_finally_clause_token1] = ACTIONS(862), + [aux_sym_goto_statement_token1] = ACTIONS(858), + [aux_sym_continue_statement_token1] = ACTIONS(858), + [aux_sym_break_statement_token1] = ACTIONS(858), + [sym_integer] = ACTIONS(858), + [aux_sym_return_statement_token1] = ACTIONS(858), + [aux_sym_throw_expression_token1] = ACTIONS(858), + [aux_sym_while_statement_token1] = ACTIONS(858), + [aux_sym_while_statement_token2] = ACTIONS(858), + [aux_sym_do_statement_token1] = ACTIONS(858), + [aux_sym_for_statement_token1] = ACTIONS(858), + [aux_sym_for_statement_token2] = ACTIONS(858), + [aux_sym_foreach_statement_token1] = ACTIONS(858), + [aux_sym_foreach_statement_token2] = ACTIONS(858), + [aux_sym_if_statement_token1] = ACTIONS(858), + [aux_sym_if_statement_token2] = ACTIONS(858), + [aux_sym_else_if_clause_token1] = ACTIONS(858), + [aux_sym_else_clause_token1] = ACTIONS(858), + [aux_sym_match_expression_token1] = ACTIONS(858), + [aux_sym_match_default_expression_token1] = ACTIONS(858), + [aux_sym_switch_statement_token1] = ACTIONS(858), + [aux_sym_switch_block_token1] = ACTIONS(858), + [aux_sym_case_statement_token1] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_TILDE] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(856), + [anon_sym_clone] = ACTIONS(858), + [anon_sym_print] = ACTIONS(858), + [anon_sym_new] = ACTIONS(858), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [sym_shell_command_expression] = ACTIONS(856), + [anon_sym_list] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_self] = ACTIONS(858), + [anon_sym_parent] = ACTIONS(858), + [anon_sym_POUND_LBRACK] = ACTIONS(856), + [sym_string] = ACTIONS(856), + [sym_boolean] = ACTIONS(858), + [sym_null] = ACTIONS(858), + [anon_sym_DOLLAR] = ACTIONS(856), + [anon_sym_yield] = ACTIONS(858), + [aux_sym_include_expression_token1] = ACTIONS(858), + [aux_sym_include_once_expression_token1] = ACTIONS(858), + [aux_sym_require_expression_token1] = ACTIONS(858), + [aux_sym_require_once_expression_token1] = ACTIONS(858), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(869), + [sym_heredoc] = ACTIONS(856), }, [399] = { [sym_text_interpolation] = STATE(399), - [sym_else_if_clause] = STATE(484), - [sym_else_clause] = STATE(485), - [aux_sym_if_statement_repeat1] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(877), - [sym_name] = ACTIONS(879), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(877), - [aux_sym_function_static_declaration_token1] = ACTIONS(879), - [aux_sym_global_declaration_token1] = ACTIONS(879), - [aux_sym_namespace_definition_token1] = ACTIONS(879), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(879), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(879), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(879), - [anon_sym_BSLASH] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [aux_sym_trait_declaration_token1] = ACTIONS(879), - [aux_sym_interface_declaration_token1] = ACTIONS(879), - [aux_sym_class_declaration_token1] = ACTIONS(879), - [aux_sym_class_modifier_token1] = ACTIONS(879), - [aux_sym_class_modifier_token2] = ACTIONS(879), - [aux_sym_visibility_modifier_token1] = ACTIONS(879), - [aux_sym_visibility_modifier_token2] = ACTIONS(879), - [aux_sym_visibility_modifier_token3] = ACTIONS(879), - [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(887), - [aux_sym_else_clause_token1] = ACTIONS(890), - [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), - [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_catch_clause] = STATE(409), + [sym_finally_clause] = STATE(409), + [aux_sym_try_statement_repeat1] = STATE(399), + [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(871), + [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), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(877), + [sym_heredoc] = ACTIONS(864), }, [400] = { [sym_text_interpolation] = STATE(400), - [sym_else_if_clause] = STATE(484), - [aux_sym_if_statement_repeat1] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(893), - [sym_name] = ACTIONS(895), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(893), - [aux_sym_function_static_declaration_token1] = ACTIONS(895), - [aux_sym_global_declaration_token1] = ACTIONS(895), - [aux_sym_namespace_definition_token1] = ACTIONS(895), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(895), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(895), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(895), - [anon_sym_BSLASH] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(893), - [aux_sym_trait_declaration_token1] = ACTIONS(895), - [aux_sym_interface_declaration_token1] = ACTIONS(895), - [aux_sym_class_declaration_token1] = ACTIONS(895), - [aux_sym_class_modifier_token1] = ACTIONS(895), - [aux_sym_class_modifier_token2] = ACTIONS(895), - [aux_sym_visibility_modifier_token1] = ACTIONS(895), - [aux_sym_visibility_modifier_token2] = ACTIONS(895), - [aux_sym_visibility_modifier_token3] = ACTIONS(895), - [aux_sym_arrow_function_token1] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_array] = ACTIONS(895), - [anon_sym_unset] = ACTIONS(895), - [aux_sym_echo_statement_token1] = ACTIONS(895), - [anon_sym_declare] = ACTIONS(895), - [aux_sym_declare_statement_token1] = ACTIONS(895), - [sym_float] = ACTIONS(895), - [aux_sym_try_statement_token1] = ACTIONS(895), - [aux_sym_goto_statement_token1] = ACTIONS(895), - [aux_sym_continue_statement_token1] = ACTIONS(895), - [aux_sym_break_statement_token1] = ACTIONS(895), - [sym_integer] = ACTIONS(895), - [aux_sym_return_statement_token1] = ACTIONS(895), - [aux_sym_throw_expression_token1] = ACTIONS(895), - [aux_sym_while_statement_token1] = ACTIONS(895), - [aux_sym_while_statement_token2] = ACTIONS(895), - [aux_sym_do_statement_token1] = ACTIONS(895), - [aux_sym_for_statement_token1] = ACTIONS(895), - [aux_sym_for_statement_token2] = ACTIONS(895), - [aux_sym_foreach_statement_token1] = ACTIONS(895), - [aux_sym_foreach_statement_token2] = ACTIONS(895), - [aux_sym_if_statement_token1] = ACTIONS(895), - [aux_sym_if_statement_token2] = ACTIONS(895), - [aux_sym_else_if_clause_token1] = ACTIONS(897), - [aux_sym_else_clause_token1] = ACTIONS(895), - [aux_sym_match_expression_token1] = ACTIONS(895), - [aux_sym_match_default_expression_token1] = ACTIONS(895), - [aux_sym_switch_statement_token1] = ACTIONS(895), - [aux_sym_switch_block_token1] = ACTIONS(895), - [aux_sym_case_statement_token1] = ACTIONS(895), - [anon_sym_AT] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(893), - [anon_sym_BANG] = ACTIONS(893), - [anon_sym_clone] = ACTIONS(895), - [anon_sym_print] = ACTIONS(895), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(893), - [sym_shell_command_expression] = ACTIONS(893), - [anon_sym_list] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_self] = ACTIONS(895), - [anon_sym_parent] = ACTIONS(895), - [sym_string] = ACTIONS(893), - [sym_boolean] = ACTIONS(895), - [sym_null] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(893), - [anon_sym_yield] = ACTIONS(895), - [aux_sym_include_expression_token1] = ACTIONS(895), - [aux_sym_include_once_expression_token1] = ACTIONS(895), - [aux_sym_require_expression_token1] = ACTIONS(895), - [aux_sym_require_once_expression_token1] = ACTIONS(895), + [sym_else_if_clause] = STATE(510), + [sym_else_clause] = STATE(511), + [aux_sym_if_statement_repeat1] = STATE(401), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_name] = ACTIONS(876), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(874), + [aux_sym_function_static_declaration_token1] = ACTIONS(876), + [aux_sym_global_declaration_token1] = ACTIONS(876), + [aux_sym_namespace_definition_token1] = ACTIONS(876), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(876), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(876), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(876), + [anon_sym_BSLASH] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [aux_sym_trait_declaration_token1] = ACTIONS(876), + [aux_sym_interface_declaration_token1] = ACTIONS(876), + [aux_sym_class_declaration_token1] = ACTIONS(876), + [aux_sym_class_modifier_token1] = ACTIONS(876), + [aux_sym_class_modifier_token2] = ACTIONS(876), + [aux_sym_visibility_modifier_token1] = ACTIONS(876), + [aux_sym_visibility_modifier_token2] = ACTIONS(876), + [aux_sym_visibility_modifier_token3] = ACTIONS(876), + [aux_sym_arrow_function_token1] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_array] = ACTIONS(876), + [anon_sym_unset] = ACTIONS(876), + [aux_sym_echo_statement_token1] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [aux_sym_declare_statement_token1] = ACTIONS(876), + [sym_float] = ACTIONS(876), + [aux_sym_try_statement_token1] = ACTIONS(876), + [aux_sym_goto_statement_token1] = ACTIONS(876), + [aux_sym_continue_statement_token1] = ACTIONS(876), + [aux_sym_break_statement_token1] = ACTIONS(876), + [sym_integer] = ACTIONS(876), + [aux_sym_return_statement_token1] = ACTIONS(876), + [aux_sym_throw_expression_token1] = ACTIONS(876), + [aux_sym_while_statement_token1] = ACTIONS(876), + [aux_sym_while_statement_token2] = ACTIONS(876), + [aux_sym_do_statement_token1] = ACTIONS(876), + [aux_sym_for_statement_token1] = ACTIONS(876), + [aux_sym_for_statement_token2] = ACTIONS(876), + [aux_sym_foreach_statement_token1] = ACTIONS(876), + [aux_sym_foreach_statement_token2] = ACTIONS(876), + [aux_sym_if_statement_token1] = ACTIONS(876), + [aux_sym_if_statement_token2] = ACTIONS(876), + [aux_sym_else_if_clause_token1] = ACTIONS(878), + [aux_sym_else_clause_token1] = ACTIONS(881), + [aux_sym_match_expression_token1] = ACTIONS(876), + [aux_sym_match_default_expression_token1] = ACTIONS(876), + [aux_sym_switch_statement_token1] = ACTIONS(876), + [aux_sym_switch_block_token1] = ACTIONS(876), + [aux_sym_case_statement_token1] = ACTIONS(876), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_TILDE] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_clone] = ACTIONS(876), + [anon_sym_print] = ACTIONS(876), + [anon_sym_new] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(874), + [anon_sym_DASH_DASH] = ACTIONS(874), + [sym_shell_command_expression] = ACTIONS(874), + [anon_sym_list] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_self] = ACTIONS(876), + [anon_sym_parent] = ACTIONS(876), + [anon_sym_POUND_LBRACK] = ACTIONS(874), + [sym_string] = ACTIONS(874), + [sym_boolean] = ACTIONS(876), + [sym_null] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [aux_sym_include_expression_token1] = ACTIONS(876), + [aux_sym_include_once_expression_token1] = ACTIONS(876), + [aux_sym_require_expression_token1] = ACTIONS(876), + [aux_sym_require_once_expression_token1] = ACTIONS(876), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(893), + [sym_heredoc] = ACTIONS(874), }, [401] = { [sym_text_interpolation] = STATE(401), - [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), - [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), + [sym_else_if_clause] = STATE(510), + [sym_else_clause] = STATE(430), + [aux_sym_if_statement_repeat1] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(884), + [sym_name] = ACTIONS(886), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(884), + [aux_sym_function_static_declaration_token1] = ACTIONS(886), + [aux_sym_global_declaration_token1] = ACTIONS(886), + [aux_sym_namespace_definition_token1] = ACTIONS(886), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(886), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(886), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(886), + [anon_sym_BSLASH] = ACTIONS(884), + [anon_sym_LBRACE] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(884), + [aux_sym_trait_declaration_token1] = ACTIONS(886), + [aux_sym_interface_declaration_token1] = ACTIONS(886), + [aux_sym_class_declaration_token1] = ACTIONS(886), + [aux_sym_class_modifier_token1] = ACTIONS(886), + [aux_sym_class_modifier_token2] = ACTIONS(886), + [aux_sym_visibility_modifier_token1] = ACTIONS(886), + [aux_sym_visibility_modifier_token2] = ACTIONS(886), + [aux_sym_visibility_modifier_token3] = ACTIONS(886), + [aux_sym_arrow_function_token1] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(884), + [anon_sym_array] = ACTIONS(886), + [anon_sym_unset] = ACTIONS(886), + [aux_sym_echo_statement_token1] = ACTIONS(886), + [anon_sym_declare] = ACTIONS(886), + [aux_sym_declare_statement_token1] = ACTIONS(886), + [sym_float] = ACTIONS(886), + [aux_sym_try_statement_token1] = ACTIONS(886), + [aux_sym_goto_statement_token1] = ACTIONS(886), + [aux_sym_continue_statement_token1] = ACTIONS(886), + [aux_sym_break_statement_token1] = ACTIONS(886), + [sym_integer] = ACTIONS(886), + [aux_sym_return_statement_token1] = ACTIONS(886), + [aux_sym_throw_expression_token1] = ACTIONS(886), + [aux_sym_while_statement_token1] = ACTIONS(886), + [aux_sym_while_statement_token2] = ACTIONS(886), + [aux_sym_do_statement_token1] = ACTIONS(886), + [aux_sym_for_statement_token1] = ACTIONS(886), + [aux_sym_for_statement_token2] = ACTIONS(886), + [aux_sym_foreach_statement_token1] = ACTIONS(886), + [aux_sym_foreach_statement_token2] = ACTIONS(886), + [aux_sym_if_statement_token1] = ACTIONS(886), + [aux_sym_if_statement_token2] = ACTIONS(886), + [aux_sym_else_if_clause_token1] = ACTIONS(888), + [aux_sym_else_clause_token1] = ACTIONS(891), + [aux_sym_match_expression_token1] = ACTIONS(886), + [aux_sym_match_default_expression_token1] = ACTIONS(886), + [aux_sym_switch_statement_token1] = ACTIONS(886), + [aux_sym_switch_block_token1] = ACTIONS(886), + [aux_sym_case_statement_token1] = ACTIONS(886), + [anon_sym_AT] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_clone] = ACTIONS(886), + [anon_sym_print] = ACTIONS(886), + [anon_sym_new] = ACTIONS(886), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_DASH_DASH] = ACTIONS(884), + [sym_shell_command_expression] = ACTIONS(884), + [anon_sym_list] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(884), + [anon_sym_self] = ACTIONS(886), + [anon_sym_parent] = ACTIONS(886), + [anon_sym_POUND_LBRACK] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [sym_boolean] = ACTIONS(886), + [sym_null] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [aux_sym_include_expression_token1] = ACTIONS(886), + [aux_sym_include_once_expression_token1] = ACTIONS(886), + [aux_sym_require_expression_token1] = ACTIONS(886), + [aux_sym_require_once_expression_token1] = ACTIONS(886), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(900), + [sym_heredoc] = ACTIONS(884), }, [402] = { [sym_text_interpolation] = STATE(402), - [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), - [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), + [sym_else_if_clause] = STATE(510), + [sym_else_clause] = STATE(430), + [aux_sym_if_statement_repeat1] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(884), + [sym_name] = ACTIONS(886), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(884), + [aux_sym_function_static_declaration_token1] = ACTIONS(886), + [aux_sym_global_declaration_token1] = ACTIONS(886), + [aux_sym_namespace_definition_token1] = ACTIONS(886), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(886), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(886), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(886), + [anon_sym_BSLASH] = ACTIONS(884), + [anon_sym_LBRACE] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(884), + [aux_sym_trait_declaration_token1] = ACTIONS(886), + [aux_sym_interface_declaration_token1] = ACTIONS(886), + [aux_sym_class_declaration_token1] = ACTIONS(886), + [aux_sym_class_modifier_token1] = ACTIONS(886), + [aux_sym_class_modifier_token2] = ACTIONS(886), + [aux_sym_visibility_modifier_token1] = ACTIONS(886), + [aux_sym_visibility_modifier_token2] = ACTIONS(886), + [aux_sym_visibility_modifier_token3] = ACTIONS(886), + [aux_sym_arrow_function_token1] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(884), + [anon_sym_array] = ACTIONS(886), + [anon_sym_unset] = ACTIONS(886), + [aux_sym_echo_statement_token1] = ACTIONS(886), + [anon_sym_declare] = ACTIONS(886), + [aux_sym_declare_statement_token1] = ACTIONS(886), + [sym_float] = ACTIONS(886), + [aux_sym_try_statement_token1] = ACTIONS(886), + [aux_sym_goto_statement_token1] = ACTIONS(886), + [aux_sym_continue_statement_token1] = ACTIONS(886), + [aux_sym_break_statement_token1] = ACTIONS(886), + [sym_integer] = ACTIONS(886), + [aux_sym_return_statement_token1] = ACTIONS(886), + [aux_sym_throw_expression_token1] = ACTIONS(886), + [aux_sym_while_statement_token1] = ACTIONS(886), + [aux_sym_while_statement_token2] = ACTIONS(886), + [aux_sym_do_statement_token1] = ACTIONS(886), + [aux_sym_for_statement_token1] = ACTIONS(886), + [aux_sym_for_statement_token2] = ACTIONS(886), + [aux_sym_foreach_statement_token1] = ACTIONS(886), + [aux_sym_foreach_statement_token2] = ACTIONS(886), + [aux_sym_if_statement_token1] = ACTIONS(886), + [aux_sym_if_statement_token2] = ACTIONS(886), + [aux_sym_else_if_clause_token1] = ACTIONS(894), + [aux_sym_else_clause_token1] = ACTIONS(896), + [aux_sym_match_expression_token1] = ACTIONS(886), + [aux_sym_match_default_expression_token1] = ACTIONS(886), + [aux_sym_switch_statement_token1] = ACTIONS(886), + [aux_sym_switch_block_token1] = ACTIONS(886), + [aux_sym_case_statement_token1] = ACTIONS(886), + [anon_sym_AT] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_clone] = ACTIONS(886), + [anon_sym_print] = ACTIONS(886), + [anon_sym_new] = ACTIONS(886), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_DASH_DASH] = ACTIONS(884), + [sym_shell_command_expression] = ACTIONS(884), + [anon_sym_list] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(884), + [anon_sym_self] = ACTIONS(886), + [anon_sym_parent] = ACTIONS(886), + [anon_sym_POUND_LBRACK] = ACTIONS(884), + [sym_string] = ACTIONS(884), + [sym_boolean] = ACTIONS(886), + [sym_null] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(884), + [anon_sym_yield] = ACTIONS(886), + [aux_sym_include_expression_token1] = ACTIONS(886), + [aux_sym_include_once_expression_token1] = ACTIONS(886), + [aux_sym_require_expression_token1] = ACTIONS(886), + [aux_sym_require_once_expression_token1] = ACTIONS(886), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(904), + [sym_heredoc] = ACTIONS(884), }, [403] = { [sym_text_interpolation] = STATE(403), - [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), - [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), + [sym_else_if_clause] = STATE(510), + [sym_else_clause] = STATE(511), + [aux_sym_if_statement_repeat1] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_name] = ACTIONS(876), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(874), + [aux_sym_function_static_declaration_token1] = ACTIONS(876), + [aux_sym_global_declaration_token1] = ACTIONS(876), + [aux_sym_namespace_definition_token1] = ACTIONS(876), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(876), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(876), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(876), + [anon_sym_BSLASH] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [aux_sym_trait_declaration_token1] = ACTIONS(876), + [aux_sym_interface_declaration_token1] = ACTIONS(876), + [aux_sym_class_declaration_token1] = ACTIONS(876), + [aux_sym_class_modifier_token1] = ACTIONS(876), + [aux_sym_class_modifier_token2] = ACTIONS(876), + [aux_sym_visibility_modifier_token1] = ACTIONS(876), + [aux_sym_visibility_modifier_token2] = ACTIONS(876), + [aux_sym_visibility_modifier_token3] = ACTIONS(876), + [aux_sym_arrow_function_token1] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_array] = ACTIONS(876), + [anon_sym_unset] = ACTIONS(876), + [aux_sym_echo_statement_token1] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [aux_sym_declare_statement_token1] = ACTIONS(876), + [sym_float] = ACTIONS(876), + [aux_sym_try_statement_token1] = ACTIONS(876), + [aux_sym_goto_statement_token1] = ACTIONS(876), + [aux_sym_continue_statement_token1] = ACTIONS(876), + [aux_sym_break_statement_token1] = ACTIONS(876), + [sym_integer] = ACTIONS(876), + [aux_sym_return_statement_token1] = ACTIONS(876), + [aux_sym_throw_expression_token1] = ACTIONS(876), + [aux_sym_while_statement_token1] = ACTIONS(876), + [aux_sym_while_statement_token2] = ACTIONS(876), + [aux_sym_do_statement_token1] = ACTIONS(876), + [aux_sym_for_statement_token1] = ACTIONS(876), + [aux_sym_for_statement_token2] = ACTIONS(876), + [aux_sym_foreach_statement_token1] = ACTIONS(876), + [aux_sym_foreach_statement_token2] = ACTIONS(876), + [aux_sym_if_statement_token1] = ACTIONS(876), + [aux_sym_if_statement_token2] = ACTIONS(876), + [aux_sym_else_if_clause_token1] = ACTIONS(894), + [aux_sym_else_clause_token1] = ACTIONS(896), + [aux_sym_match_expression_token1] = ACTIONS(876), + [aux_sym_match_default_expression_token1] = ACTIONS(876), + [aux_sym_switch_statement_token1] = ACTIONS(876), + [aux_sym_switch_block_token1] = ACTIONS(876), + [aux_sym_case_statement_token1] = ACTIONS(876), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_TILDE] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(874), + [anon_sym_clone] = ACTIONS(876), + [anon_sym_print] = ACTIONS(876), + [anon_sym_new] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(874), + [anon_sym_DASH_DASH] = ACTIONS(874), + [sym_shell_command_expression] = ACTIONS(874), + [anon_sym_list] = ACTIONS(876), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_self] = ACTIONS(876), + [anon_sym_parent] = ACTIONS(876), + [anon_sym_POUND_LBRACK] = ACTIONS(874), + [sym_string] = ACTIONS(874), + [sym_boolean] = ACTIONS(876), + [sym_null] = ACTIONS(876), + [anon_sym_DOLLAR] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [aux_sym_include_expression_token1] = ACTIONS(876), + [aux_sym_include_once_expression_token1] = ACTIONS(876), + [aux_sym_require_expression_token1] = ACTIONS(876), + [aux_sym_require_once_expression_token1] = ACTIONS(876), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(908), + [sym_heredoc] = ACTIONS(874), }, [404] = { [sym_text_interpolation] = STATE(404), - [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), - [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), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_name] = ACTIONS(900), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(898), + [aux_sym_function_static_declaration_token1] = ACTIONS(900), + [aux_sym_global_declaration_token1] = ACTIONS(900), + [aux_sym_namespace_definition_token1] = ACTIONS(900), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(900), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(900), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(900), + [anon_sym_BSLASH] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(898), + [aux_sym_trait_declaration_token1] = ACTIONS(900), + [aux_sym_interface_declaration_token1] = ACTIONS(900), + [aux_sym_class_declaration_token1] = ACTIONS(900), + [aux_sym_class_modifier_token1] = ACTIONS(900), + [aux_sym_class_modifier_token2] = ACTIONS(900), + [aux_sym_visibility_modifier_token1] = ACTIONS(900), + [aux_sym_visibility_modifier_token2] = ACTIONS(900), + [aux_sym_visibility_modifier_token3] = ACTIONS(900), + [aux_sym_arrow_function_token1] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_array] = ACTIONS(900), + [anon_sym_unset] = ACTIONS(900), + [aux_sym_echo_statement_token1] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [aux_sym_declare_statement_token1] = ACTIONS(900), + [sym_float] = ACTIONS(900), + [aux_sym_try_statement_token1] = ACTIONS(900), + [aux_sym_catch_clause_token1] = ACTIONS(900), + [aux_sym_finally_clause_token1] = ACTIONS(900), + [aux_sym_goto_statement_token1] = ACTIONS(900), + [aux_sym_continue_statement_token1] = ACTIONS(900), + [aux_sym_break_statement_token1] = ACTIONS(900), + [sym_integer] = ACTIONS(900), + [aux_sym_return_statement_token1] = ACTIONS(900), + [aux_sym_throw_expression_token1] = ACTIONS(900), + [aux_sym_while_statement_token1] = ACTIONS(900), + [aux_sym_while_statement_token2] = ACTIONS(900), + [aux_sym_do_statement_token1] = ACTIONS(900), + [aux_sym_for_statement_token1] = ACTIONS(900), + [aux_sym_for_statement_token2] = ACTIONS(900), + [aux_sym_foreach_statement_token1] = ACTIONS(900), + [aux_sym_foreach_statement_token2] = ACTIONS(900), + [aux_sym_if_statement_token1] = ACTIONS(900), + [aux_sym_if_statement_token2] = ACTIONS(900), + [aux_sym_else_if_clause_token1] = ACTIONS(900), + [aux_sym_else_clause_token1] = ACTIONS(900), + [aux_sym_match_expression_token1] = ACTIONS(900), + [aux_sym_match_default_expression_token1] = ACTIONS(900), + [aux_sym_switch_statement_token1] = ACTIONS(900), + [aux_sym_switch_block_token1] = ACTIONS(900), + [aux_sym_case_statement_token1] = ACTIONS(900), + [anon_sym_AT] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(898), + [anon_sym_clone] = ACTIONS(900), + [anon_sym_print] = ACTIONS(900), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(898), + [sym_shell_command_expression] = ACTIONS(898), + [anon_sym_list] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(898), + [anon_sym_self] = ACTIONS(900), + [anon_sym_parent] = ACTIONS(900), + [anon_sym_POUND_LBRACK] = ACTIONS(898), + [sym_string] = ACTIONS(898), + [sym_boolean] = ACTIONS(900), + [sym_null] = ACTIONS(900), + [anon_sym_DOLLAR] = ACTIONS(898), + [anon_sym_yield] = ACTIONS(900), + [aux_sym_include_expression_token1] = ACTIONS(900), + [aux_sym_include_once_expression_token1] = ACTIONS(900), + [aux_sym_require_expression_token1] = ACTIONS(900), + [aux_sym_require_once_expression_token1] = ACTIONS(900), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(912), + [sym_heredoc] = ACTIONS(898), }, [405] = { [sym_text_interpolation] = STATE(405), - [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), - [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(902), + [sym_name] = ACTIONS(904), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(902), + [aux_sym_function_static_declaration_token1] = ACTIONS(904), + [aux_sym_global_declaration_token1] = ACTIONS(904), + [aux_sym_namespace_definition_token1] = ACTIONS(904), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(904), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(904), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(904), + [anon_sym_BSLASH] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(902), + [aux_sym_trait_declaration_token1] = ACTIONS(904), + [aux_sym_interface_declaration_token1] = ACTIONS(904), + [aux_sym_class_declaration_token1] = ACTIONS(904), + [aux_sym_class_modifier_token1] = ACTIONS(904), + [aux_sym_class_modifier_token2] = ACTIONS(904), + [aux_sym_visibility_modifier_token1] = ACTIONS(904), + [aux_sym_visibility_modifier_token2] = ACTIONS(904), + [aux_sym_visibility_modifier_token3] = ACTIONS(904), + [aux_sym_arrow_function_token1] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_array] = ACTIONS(904), + [anon_sym_unset] = ACTIONS(904), + [aux_sym_echo_statement_token1] = ACTIONS(904), + [anon_sym_declare] = ACTIONS(904), + [aux_sym_declare_statement_token1] = ACTIONS(904), + [sym_float] = ACTIONS(904), + [aux_sym_try_statement_token1] = ACTIONS(904), + [aux_sym_catch_clause_token1] = ACTIONS(904), + [aux_sym_finally_clause_token1] = ACTIONS(904), + [aux_sym_goto_statement_token1] = ACTIONS(904), + [aux_sym_continue_statement_token1] = ACTIONS(904), + [aux_sym_break_statement_token1] = ACTIONS(904), + [sym_integer] = ACTIONS(904), + [aux_sym_return_statement_token1] = ACTIONS(904), + [aux_sym_throw_expression_token1] = ACTIONS(904), + [aux_sym_while_statement_token1] = ACTIONS(904), + [aux_sym_while_statement_token2] = ACTIONS(904), + [aux_sym_do_statement_token1] = ACTIONS(904), + [aux_sym_for_statement_token1] = ACTIONS(904), + [aux_sym_for_statement_token2] = ACTIONS(904), + [aux_sym_foreach_statement_token1] = ACTIONS(904), + [aux_sym_foreach_statement_token2] = ACTIONS(904), + [aux_sym_if_statement_token1] = ACTIONS(904), + [aux_sym_if_statement_token2] = ACTIONS(904), + [aux_sym_else_if_clause_token1] = ACTIONS(904), + [aux_sym_else_clause_token1] = ACTIONS(904), + [aux_sym_match_expression_token1] = ACTIONS(904), + [aux_sym_match_default_expression_token1] = ACTIONS(904), + [aux_sym_switch_statement_token1] = ACTIONS(904), + [aux_sym_switch_block_token1] = ACTIONS(904), + [aux_sym_case_statement_token1] = ACTIONS(904), + [anon_sym_AT] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_clone] = ACTIONS(904), + [anon_sym_print] = ACTIONS(904), + [anon_sym_new] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(902), + [sym_shell_command_expression] = ACTIONS(902), + [anon_sym_list] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_self] = ACTIONS(904), + [anon_sym_parent] = ACTIONS(904), + [anon_sym_POUND_LBRACK] = ACTIONS(902), + [sym_string] = ACTIONS(902), + [sym_boolean] = ACTIONS(904), + [sym_null] = ACTIONS(904), + [anon_sym_DOLLAR] = ACTIONS(902), + [anon_sym_yield] = ACTIONS(904), + [aux_sym_include_expression_token1] = ACTIONS(904), + [aux_sym_include_once_expression_token1] = ACTIONS(904), + [aux_sym_require_expression_token1] = ACTIONS(904), + [aux_sym_require_once_expression_token1] = ACTIONS(904), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(916), + [sym_heredoc] = ACTIONS(902), }, [406] = { [sym_text_interpolation] = STATE(406), - [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_catch_clause_token1] = ACTIONS(922), - [aux_sym_finally_clause_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(922), - [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), - [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(906), + [sym_name] = ACTIONS(908), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(906), + [aux_sym_function_static_declaration_token1] = ACTIONS(908), + [aux_sym_global_declaration_token1] = ACTIONS(908), + [aux_sym_namespace_definition_token1] = ACTIONS(908), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(908), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(908), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(908), + [anon_sym_BSLASH] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(906), + [aux_sym_trait_declaration_token1] = ACTIONS(908), + [aux_sym_interface_declaration_token1] = ACTIONS(908), + [aux_sym_class_declaration_token1] = ACTIONS(908), + [aux_sym_class_modifier_token1] = ACTIONS(908), + [aux_sym_class_modifier_token2] = ACTIONS(908), + [aux_sym_visibility_modifier_token1] = ACTIONS(908), + [aux_sym_visibility_modifier_token2] = ACTIONS(908), + [aux_sym_visibility_modifier_token3] = ACTIONS(908), + [aux_sym_arrow_function_token1] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(906), + [anon_sym_array] = ACTIONS(908), + [anon_sym_unset] = ACTIONS(908), + [aux_sym_echo_statement_token1] = ACTIONS(908), + [anon_sym_declare] = ACTIONS(908), + [aux_sym_declare_statement_token1] = ACTIONS(908), + [sym_float] = ACTIONS(908), + [aux_sym_try_statement_token1] = ACTIONS(908), + [aux_sym_catch_clause_token1] = ACTIONS(908), + [aux_sym_finally_clause_token1] = ACTIONS(908), + [aux_sym_goto_statement_token1] = ACTIONS(908), + [aux_sym_continue_statement_token1] = ACTIONS(908), + [aux_sym_break_statement_token1] = ACTIONS(908), + [sym_integer] = ACTIONS(908), + [aux_sym_return_statement_token1] = ACTIONS(908), + [aux_sym_throw_expression_token1] = ACTIONS(908), + [aux_sym_while_statement_token1] = ACTIONS(908), + [aux_sym_while_statement_token2] = ACTIONS(908), + [aux_sym_do_statement_token1] = ACTIONS(908), + [aux_sym_for_statement_token1] = ACTIONS(908), + [aux_sym_for_statement_token2] = ACTIONS(908), + [aux_sym_foreach_statement_token1] = ACTIONS(908), + [aux_sym_foreach_statement_token2] = ACTIONS(908), + [aux_sym_if_statement_token1] = ACTIONS(908), + [aux_sym_if_statement_token2] = ACTIONS(908), + [aux_sym_else_if_clause_token1] = ACTIONS(908), + [aux_sym_else_clause_token1] = ACTIONS(908), + [aux_sym_match_expression_token1] = ACTIONS(908), + [aux_sym_match_default_expression_token1] = ACTIONS(908), + [aux_sym_switch_statement_token1] = ACTIONS(908), + [aux_sym_switch_block_token1] = ACTIONS(908), + [aux_sym_case_statement_token1] = ACTIONS(908), + [anon_sym_AT] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_clone] = ACTIONS(908), + [anon_sym_print] = ACTIONS(908), + [anon_sym_new] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_DASH_DASH] = ACTIONS(906), + [sym_shell_command_expression] = ACTIONS(906), + [anon_sym_list] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_self] = ACTIONS(908), + [anon_sym_parent] = ACTIONS(908), + [anon_sym_POUND_LBRACK] = ACTIONS(906), + [sym_string] = ACTIONS(906), + [sym_boolean] = ACTIONS(908), + [sym_null] = ACTIONS(908), + [anon_sym_DOLLAR] = ACTIONS(906), + [anon_sym_yield] = ACTIONS(908), + [aux_sym_include_expression_token1] = ACTIONS(908), + [aux_sym_include_once_expression_token1] = ACTIONS(908), + [aux_sym_require_expression_token1] = ACTIONS(908), + [aux_sym_require_once_expression_token1] = ACTIONS(908), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(920), + [sym_heredoc] = ACTIONS(906), }, [407] = { [sym_text_interpolation] = STATE(407), - [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_class_modifier_token1] = ACTIONS(926), - [aux_sym_class_modifier_token2] = 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_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), - [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), + [ts_builtin_sym_end] = ACTIONS(910), + [sym_name] = ACTIONS(912), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(910), + [aux_sym_function_static_declaration_token1] = ACTIONS(912), + [aux_sym_global_declaration_token1] = ACTIONS(912), + [aux_sym_namespace_definition_token1] = ACTIONS(912), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(912), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(912), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(912), + [anon_sym_BSLASH] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_RBRACE] = ACTIONS(910), + [aux_sym_trait_declaration_token1] = ACTIONS(912), + [aux_sym_interface_declaration_token1] = ACTIONS(912), + [aux_sym_class_declaration_token1] = ACTIONS(912), + [aux_sym_class_modifier_token1] = ACTIONS(912), + [aux_sym_class_modifier_token2] = ACTIONS(912), + [aux_sym_visibility_modifier_token1] = ACTIONS(912), + [aux_sym_visibility_modifier_token2] = ACTIONS(912), + [aux_sym_visibility_modifier_token3] = ACTIONS(912), + [aux_sym_arrow_function_token1] = ACTIONS(912), + [anon_sym_LPAREN] = ACTIONS(910), + [anon_sym_array] = ACTIONS(912), + [anon_sym_unset] = ACTIONS(912), + [aux_sym_echo_statement_token1] = ACTIONS(912), + [anon_sym_declare] = ACTIONS(912), + [aux_sym_declare_statement_token1] = ACTIONS(912), + [sym_float] = ACTIONS(912), + [aux_sym_try_statement_token1] = ACTIONS(912), + [aux_sym_catch_clause_token1] = ACTIONS(912), + [aux_sym_finally_clause_token1] = ACTIONS(912), + [aux_sym_goto_statement_token1] = ACTIONS(912), + [aux_sym_continue_statement_token1] = ACTIONS(912), + [aux_sym_break_statement_token1] = ACTIONS(912), + [sym_integer] = ACTIONS(912), + [aux_sym_return_statement_token1] = ACTIONS(912), + [aux_sym_throw_expression_token1] = ACTIONS(912), + [aux_sym_while_statement_token1] = ACTIONS(912), + [aux_sym_while_statement_token2] = ACTIONS(912), + [aux_sym_do_statement_token1] = ACTIONS(912), + [aux_sym_for_statement_token1] = ACTIONS(912), + [aux_sym_for_statement_token2] = ACTIONS(912), + [aux_sym_foreach_statement_token1] = ACTIONS(912), + [aux_sym_foreach_statement_token2] = ACTIONS(912), + [aux_sym_if_statement_token1] = ACTIONS(912), + [aux_sym_if_statement_token2] = ACTIONS(912), + [aux_sym_else_if_clause_token1] = ACTIONS(912), + [aux_sym_else_clause_token1] = ACTIONS(912), + [aux_sym_match_expression_token1] = ACTIONS(912), + [aux_sym_match_default_expression_token1] = ACTIONS(912), + [aux_sym_switch_statement_token1] = ACTIONS(912), + [aux_sym_switch_block_token1] = ACTIONS(912), + [aux_sym_case_statement_token1] = ACTIONS(912), + [anon_sym_AT] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_clone] = ACTIONS(912), + [anon_sym_print] = ACTIONS(912), + [anon_sym_new] = ACTIONS(912), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_DASH_DASH] = ACTIONS(910), + [sym_shell_command_expression] = ACTIONS(910), + [anon_sym_list] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(910), + [anon_sym_self] = ACTIONS(912), + [anon_sym_parent] = ACTIONS(912), + [anon_sym_POUND_LBRACK] = ACTIONS(910), + [sym_string] = ACTIONS(910), + [sym_boolean] = ACTIONS(912), + [sym_null] = ACTIONS(912), + [anon_sym_DOLLAR] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [aux_sym_include_expression_token1] = ACTIONS(912), + [aux_sym_include_once_expression_token1] = ACTIONS(912), + [aux_sym_require_expression_token1] = ACTIONS(912), + [aux_sym_require_once_expression_token1] = ACTIONS(912), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(924), - [sym_heredoc] = ACTIONS(924), + [sym_heredoc] = ACTIONS(910), }, [408] = { [sym_text_interpolation] = STATE(408), - [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_class_modifier_token1] = ACTIONS(930), - [aux_sym_class_modifier_token2] = 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), - [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_else_if_clause] = STATE(510), + [aux_sym_if_statement_repeat1] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(914), + [sym_name] = ACTIONS(916), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(914), + [aux_sym_function_static_declaration_token1] = ACTIONS(916), + [aux_sym_global_declaration_token1] = ACTIONS(916), + [aux_sym_namespace_definition_token1] = ACTIONS(916), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(916), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(916), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(916), + [anon_sym_BSLASH] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [aux_sym_trait_declaration_token1] = ACTIONS(916), + [aux_sym_interface_declaration_token1] = ACTIONS(916), + [aux_sym_class_declaration_token1] = ACTIONS(916), + [aux_sym_class_modifier_token1] = ACTIONS(916), + [aux_sym_class_modifier_token2] = ACTIONS(916), + [aux_sym_visibility_modifier_token1] = ACTIONS(916), + [aux_sym_visibility_modifier_token2] = ACTIONS(916), + [aux_sym_visibility_modifier_token3] = ACTIONS(916), + [aux_sym_arrow_function_token1] = ACTIONS(916), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_array] = ACTIONS(916), + [anon_sym_unset] = ACTIONS(916), + [aux_sym_echo_statement_token1] = ACTIONS(916), + [anon_sym_declare] = ACTIONS(916), + [aux_sym_declare_statement_token1] = ACTIONS(916), + [sym_float] = ACTIONS(916), + [aux_sym_try_statement_token1] = ACTIONS(916), + [aux_sym_goto_statement_token1] = ACTIONS(916), + [aux_sym_continue_statement_token1] = ACTIONS(916), + [aux_sym_break_statement_token1] = ACTIONS(916), + [sym_integer] = ACTIONS(916), + [aux_sym_return_statement_token1] = ACTIONS(916), + [aux_sym_throw_expression_token1] = ACTIONS(916), + [aux_sym_while_statement_token1] = ACTIONS(916), + [aux_sym_while_statement_token2] = ACTIONS(916), + [aux_sym_do_statement_token1] = ACTIONS(916), + [aux_sym_for_statement_token1] = ACTIONS(916), + [aux_sym_for_statement_token2] = ACTIONS(916), + [aux_sym_foreach_statement_token1] = ACTIONS(916), + [aux_sym_foreach_statement_token2] = ACTIONS(916), + [aux_sym_if_statement_token1] = ACTIONS(916), + [aux_sym_if_statement_token2] = ACTIONS(916), + [aux_sym_else_if_clause_token1] = ACTIONS(918), + [aux_sym_else_clause_token1] = ACTIONS(916), + [aux_sym_match_expression_token1] = ACTIONS(916), + [aux_sym_match_default_expression_token1] = ACTIONS(916), + [aux_sym_switch_statement_token1] = ACTIONS(916), + [aux_sym_switch_block_token1] = ACTIONS(916), + [aux_sym_case_statement_token1] = ACTIONS(916), + [anon_sym_AT] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(916), + [anon_sym_DASH] = ACTIONS(916), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_clone] = ACTIONS(916), + [anon_sym_print] = ACTIONS(916), + [anon_sym_new] = ACTIONS(916), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(914), + [sym_shell_command_expression] = ACTIONS(914), + [anon_sym_list] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(914), + [anon_sym_self] = ACTIONS(916), + [anon_sym_parent] = ACTIONS(916), + [anon_sym_POUND_LBRACK] = ACTIONS(914), + [sym_string] = ACTIONS(914), + [sym_boolean] = ACTIONS(916), + [sym_null] = ACTIONS(916), + [anon_sym_DOLLAR] = ACTIONS(914), + [anon_sym_yield] = ACTIONS(916), + [aux_sym_include_expression_token1] = ACTIONS(916), + [aux_sym_include_once_expression_token1] = ACTIONS(916), + [aux_sym_require_expression_token1] = ACTIONS(916), + [aux_sym_require_once_expression_token1] = ACTIONS(916), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(928), - [sym_heredoc] = ACTIONS(928), + [sym_heredoc] = ACTIONS(914), }, [409] = { [sym_text_interpolation] = STATE(409), - [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_class_modifier_token1] = ACTIONS(934), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(921), + [sym_name] = ACTIONS(923), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(921), + [aux_sym_function_static_declaration_token1] = ACTIONS(923), + [aux_sym_global_declaration_token1] = ACTIONS(923), + [aux_sym_namespace_definition_token1] = ACTIONS(923), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(923), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(923), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(923), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [aux_sym_trait_declaration_token1] = ACTIONS(923), + [aux_sym_interface_declaration_token1] = ACTIONS(923), + [aux_sym_class_declaration_token1] = ACTIONS(923), + [aux_sym_class_modifier_token1] = ACTIONS(923), + [aux_sym_class_modifier_token2] = ACTIONS(923), + [aux_sym_visibility_modifier_token1] = ACTIONS(923), + [aux_sym_visibility_modifier_token2] = ACTIONS(923), + [aux_sym_visibility_modifier_token3] = ACTIONS(923), + [aux_sym_arrow_function_token1] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_array] = ACTIONS(923), + [anon_sym_unset] = ACTIONS(923), + [aux_sym_echo_statement_token1] = ACTIONS(923), + [anon_sym_declare] = ACTIONS(923), + [aux_sym_declare_statement_token1] = ACTIONS(923), + [sym_float] = ACTIONS(923), + [aux_sym_try_statement_token1] = ACTIONS(923), + [aux_sym_catch_clause_token1] = ACTIONS(923), + [aux_sym_finally_clause_token1] = ACTIONS(923), + [aux_sym_goto_statement_token1] = ACTIONS(923), + [aux_sym_continue_statement_token1] = ACTIONS(923), + [aux_sym_break_statement_token1] = ACTIONS(923), + [sym_integer] = ACTIONS(923), + [aux_sym_return_statement_token1] = ACTIONS(923), + [aux_sym_throw_expression_token1] = ACTIONS(923), + [aux_sym_while_statement_token1] = ACTIONS(923), + [aux_sym_while_statement_token2] = ACTIONS(923), + [aux_sym_do_statement_token1] = ACTIONS(923), + [aux_sym_for_statement_token1] = ACTIONS(923), + [aux_sym_for_statement_token2] = ACTIONS(923), + [aux_sym_foreach_statement_token1] = ACTIONS(923), + [aux_sym_foreach_statement_token2] = ACTIONS(923), + [aux_sym_if_statement_token1] = ACTIONS(923), + [aux_sym_if_statement_token2] = ACTIONS(923), + [aux_sym_else_if_clause_token1] = ACTIONS(923), + [aux_sym_else_clause_token1] = ACTIONS(923), + [aux_sym_match_expression_token1] = ACTIONS(923), + [aux_sym_match_default_expression_token1] = ACTIONS(923), + [aux_sym_switch_statement_token1] = ACTIONS(923), + [aux_sym_switch_block_token1] = ACTIONS(923), + [aux_sym_case_statement_token1] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_clone] = ACTIONS(923), + [anon_sym_print] = ACTIONS(923), + [anon_sym_new] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [sym_shell_command_expression] = ACTIONS(921), + [anon_sym_list] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_self] = ACTIONS(923), + [anon_sym_parent] = ACTIONS(923), + [anon_sym_POUND_LBRACK] = ACTIONS(921), + [sym_string] = ACTIONS(921), + [sym_boolean] = ACTIONS(923), + [sym_null] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(923), + [aux_sym_include_expression_token1] = ACTIONS(923), + [aux_sym_include_once_expression_token1] = ACTIONS(923), + [aux_sym_require_expression_token1] = ACTIONS(923), + [aux_sym_require_once_expression_token1] = ACTIONS(923), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(936), - [sym_heredoc] = ACTIONS(932), + [sym_heredoc] = ACTIONS(921), }, [410] = { [sym_text_interpolation] = STATE(410), - [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_class_modifier_token1] = ACTIONS(940), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(925), + [sym_name] = ACTIONS(927), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(925), + [aux_sym_function_static_declaration_token1] = ACTIONS(927), + [aux_sym_global_declaration_token1] = ACTIONS(927), + [aux_sym_namespace_definition_token1] = ACTIONS(927), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(927), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(927), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(927), + [anon_sym_BSLASH] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [aux_sym_trait_declaration_token1] = ACTIONS(927), + [aux_sym_interface_declaration_token1] = ACTIONS(927), + [aux_sym_class_declaration_token1] = ACTIONS(927), + [aux_sym_class_modifier_token1] = ACTIONS(927), + [aux_sym_class_modifier_token2] = ACTIONS(927), + [aux_sym_visibility_modifier_token1] = ACTIONS(927), + [aux_sym_visibility_modifier_token2] = ACTIONS(927), + [aux_sym_visibility_modifier_token3] = ACTIONS(927), + [aux_sym_arrow_function_token1] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_array] = ACTIONS(927), + [anon_sym_unset] = ACTIONS(927), + [aux_sym_echo_statement_token1] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(927), + [aux_sym_declare_statement_token1] = ACTIONS(927), + [sym_float] = ACTIONS(927), + [aux_sym_try_statement_token1] = ACTIONS(927), + [aux_sym_catch_clause_token1] = ACTIONS(927), + [aux_sym_finally_clause_token1] = ACTIONS(927), + [aux_sym_goto_statement_token1] = ACTIONS(927), + [aux_sym_continue_statement_token1] = ACTIONS(927), + [aux_sym_break_statement_token1] = ACTIONS(927), + [sym_integer] = ACTIONS(927), + [aux_sym_return_statement_token1] = ACTIONS(927), + [aux_sym_throw_expression_token1] = ACTIONS(927), + [aux_sym_while_statement_token1] = ACTIONS(927), + [aux_sym_while_statement_token2] = ACTIONS(927), + [aux_sym_do_statement_token1] = ACTIONS(927), + [aux_sym_for_statement_token1] = ACTIONS(927), + [aux_sym_for_statement_token2] = ACTIONS(927), + [aux_sym_foreach_statement_token1] = ACTIONS(927), + [aux_sym_foreach_statement_token2] = ACTIONS(927), + [aux_sym_if_statement_token1] = ACTIONS(927), + [aux_sym_if_statement_token2] = ACTIONS(927), + [aux_sym_else_if_clause_token1] = ACTIONS(927), + [aux_sym_else_clause_token1] = ACTIONS(927), + [aux_sym_match_expression_token1] = ACTIONS(927), + [aux_sym_match_default_expression_token1] = ACTIONS(927), + [aux_sym_switch_statement_token1] = ACTIONS(927), + [aux_sym_switch_block_token1] = ACTIONS(927), + [aux_sym_case_statement_token1] = ACTIONS(927), + [anon_sym_AT] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_clone] = ACTIONS(927), + [anon_sym_print] = ACTIONS(927), + [anon_sym_new] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(925), + [sym_shell_command_expression] = ACTIONS(925), + [anon_sym_list] = ACTIONS(927), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_self] = ACTIONS(927), + [anon_sym_parent] = ACTIONS(927), + [anon_sym_POUND_LBRACK] = ACTIONS(925), + [sym_string] = ACTIONS(925), + [sym_boolean] = ACTIONS(927), + [sym_null] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_yield] = ACTIONS(927), + [aux_sym_include_expression_token1] = ACTIONS(927), + [aux_sym_include_once_expression_token1] = ACTIONS(927), + [aux_sym_require_expression_token1] = ACTIONS(927), + [aux_sym_require_once_expression_token1] = ACTIONS(927), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(942), - [sym_heredoc] = ACTIONS(938), + [sym_heredoc] = ACTIONS(925), }, [411] = { [sym_text_interpolation] = STATE(411), - [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_class_modifier_token1] = ACTIONS(946), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(929), + [sym_name] = ACTIONS(931), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(933), + [aux_sym_function_static_declaration_token1] = ACTIONS(931), + [aux_sym_global_declaration_token1] = ACTIONS(931), + [aux_sym_namespace_definition_token1] = ACTIONS(931), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(931), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(931), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(931), + [anon_sym_BSLASH] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [aux_sym_trait_declaration_token1] = ACTIONS(931), + [aux_sym_interface_declaration_token1] = ACTIONS(931), + [aux_sym_class_declaration_token1] = ACTIONS(931), + [aux_sym_class_modifier_token1] = ACTIONS(931), + [aux_sym_class_modifier_token2] = ACTIONS(931), + [aux_sym_visibility_modifier_token1] = ACTIONS(931), + [aux_sym_visibility_modifier_token2] = ACTIONS(931), + [aux_sym_visibility_modifier_token3] = ACTIONS(931), + [aux_sym_arrow_function_token1] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_array] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [aux_sym_echo_statement_token1] = ACTIONS(931), + [anon_sym_declare] = ACTIONS(931), + [aux_sym_declare_statement_token1] = ACTIONS(931), + [sym_float] = ACTIONS(931), + [aux_sym_try_statement_token1] = ACTIONS(931), + [aux_sym_goto_statement_token1] = ACTIONS(931), + [aux_sym_continue_statement_token1] = ACTIONS(931), + [aux_sym_break_statement_token1] = ACTIONS(931), + [sym_integer] = ACTIONS(931), + [aux_sym_return_statement_token1] = ACTIONS(931), + [aux_sym_throw_expression_token1] = ACTIONS(931), + [aux_sym_while_statement_token1] = ACTIONS(931), + [aux_sym_while_statement_token2] = ACTIONS(931), + [aux_sym_do_statement_token1] = ACTIONS(931), + [aux_sym_for_statement_token1] = ACTIONS(931), + [aux_sym_for_statement_token2] = ACTIONS(931), + [aux_sym_foreach_statement_token1] = ACTIONS(931), + [aux_sym_foreach_statement_token2] = ACTIONS(931), + [aux_sym_if_statement_token1] = ACTIONS(931), + [aux_sym_if_statement_token2] = ACTIONS(931), + [aux_sym_else_if_clause_token1] = ACTIONS(931), + [aux_sym_else_clause_token1] = ACTIONS(931), + [aux_sym_match_expression_token1] = ACTIONS(931), + [aux_sym_match_default_expression_token1] = ACTIONS(931), + [aux_sym_switch_statement_token1] = ACTIONS(931), + [aux_sym_switch_block_token1] = ACTIONS(931), + [aux_sym_case_statement_token1] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_clone] = ACTIONS(931), + [anon_sym_print] = ACTIONS(931), + [anon_sym_new] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [sym_shell_command_expression] = ACTIONS(929), + [anon_sym_list] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_self] = ACTIONS(931), + [anon_sym_parent] = ACTIONS(931), + [anon_sym_POUND_LBRACK] = ACTIONS(929), + [sym_string] = ACTIONS(929), + [sym_boolean] = ACTIONS(931), + [sym_null] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_yield] = ACTIONS(931), + [aux_sym_include_expression_token1] = ACTIONS(931), + [aux_sym_include_once_expression_token1] = ACTIONS(931), + [aux_sym_require_expression_token1] = ACTIONS(931), + [aux_sym_require_once_expression_token1] = ACTIONS(931), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(948), - [sym_heredoc] = ACTIONS(944), + [sym__automatic_semicolon] = ACTIONS(933), + [sym_heredoc] = ACTIONS(929), }, [412] = { [sym_text_interpolation] = STATE(412), - [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_class_modifier_token1] = ACTIONS(952), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(935), + [sym_name] = ACTIONS(937), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(939), + [aux_sym_function_static_declaration_token1] = ACTIONS(937), + [aux_sym_global_declaration_token1] = ACTIONS(937), + [aux_sym_namespace_definition_token1] = ACTIONS(937), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(937), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(937), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(937), + [anon_sym_BSLASH] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [aux_sym_trait_declaration_token1] = ACTIONS(937), + [aux_sym_interface_declaration_token1] = ACTIONS(937), + [aux_sym_class_declaration_token1] = ACTIONS(937), + [aux_sym_class_modifier_token1] = ACTIONS(937), + [aux_sym_class_modifier_token2] = ACTIONS(937), + [aux_sym_visibility_modifier_token1] = ACTIONS(937), + [aux_sym_visibility_modifier_token2] = ACTIONS(937), + [aux_sym_visibility_modifier_token3] = ACTIONS(937), + [aux_sym_arrow_function_token1] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_array] = ACTIONS(937), + [anon_sym_unset] = ACTIONS(937), + [aux_sym_echo_statement_token1] = ACTIONS(937), + [anon_sym_declare] = ACTIONS(937), + [aux_sym_declare_statement_token1] = ACTIONS(937), + [sym_float] = ACTIONS(937), + [aux_sym_try_statement_token1] = ACTIONS(937), + [aux_sym_goto_statement_token1] = ACTIONS(937), + [aux_sym_continue_statement_token1] = ACTIONS(937), + [aux_sym_break_statement_token1] = ACTIONS(937), + [sym_integer] = ACTIONS(937), + [aux_sym_return_statement_token1] = ACTIONS(937), + [aux_sym_throw_expression_token1] = ACTIONS(937), + [aux_sym_while_statement_token1] = ACTIONS(937), + [aux_sym_while_statement_token2] = ACTIONS(937), + [aux_sym_do_statement_token1] = ACTIONS(937), + [aux_sym_for_statement_token1] = ACTIONS(937), + [aux_sym_for_statement_token2] = ACTIONS(937), + [aux_sym_foreach_statement_token1] = ACTIONS(937), + [aux_sym_foreach_statement_token2] = ACTIONS(937), + [aux_sym_if_statement_token1] = ACTIONS(937), + [aux_sym_if_statement_token2] = ACTIONS(937), + [aux_sym_else_if_clause_token1] = ACTIONS(937), + [aux_sym_else_clause_token1] = ACTIONS(937), + [aux_sym_match_expression_token1] = ACTIONS(937), + [aux_sym_match_default_expression_token1] = ACTIONS(937), + [aux_sym_switch_statement_token1] = ACTIONS(937), + [aux_sym_switch_block_token1] = ACTIONS(937), + [aux_sym_case_statement_token1] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_clone] = ACTIONS(937), + [anon_sym_print] = ACTIONS(937), + [anon_sym_new] = ACTIONS(937), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(935), + [sym_shell_command_expression] = ACTIONS(935), + [anon_sym_list] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_self] = ACTIONS(937), + [anon_sym_parent] = ACTIONS(937), + [anon_sym_POUND_LBRACK] = ACTIONS(935), + [sym_string] = ACTIONS(935), + [sym_boolean] = ACTIONS(937), + [sym_null] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(937), + [aux_sym_include_expression_token1] = ACTIONS(937), + [aux_sym_include_once_expression_token1] = ACTIONS(937), + [aux_sym_require_expression_token1] = ACTIONS(937), + [aux_sym_require_once_expression_token1] = ACTIONS(937), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(954), - [sym_heredoc] = ACTIONS(950), + [sym__automatic_semicolon] = ACTIONS(939), + [sym_heredoc] = ACTIONS(935), }, [413] = { [sym_text_interpolation] = STATE(413), - [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_class_modifier_token1] = ACTIONS(958), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(941), + [sym_name] = ACTIONS(943), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(945), + [aux_sym_function_static_declaration_token1] = ACTIONS(943), + [aux_sym_global_declaration_token1] = ACTIONS(943), + [aux_sym_namespace_definition_token1] = ACTIONS(943), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(943), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(943), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(943), + [anon_sym_BSLASH] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [aux_sym_trait_declaration_token1] = ACTIONS(943), + [aux_sym_interface_declaration_token1] = ACTIONS(943), + [aux_sym_class_declaration_token1] = ACTIONS(943), + [aux_sym_class_modifier_token1] = ACTIONS(943), + [aux_sym_class_modifier_token2] = ACTIONS(943), + [aux_sym_visibility_modifier_token1] = ACTIONS(943), + [aux_sym_visibility_modifier_token2] = ACTIONS(943), + [aux_sym_visibility_modifier_token3] = ACTIONS(943), + [aux_sym_arrow_function_token1] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_array] = ACTIONS(943), + [anon_sym_unset] = ACTIONS(943), + [aux_sym_echo_statement_token1] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(943), + [aux_sym_declare_statement_token1] = ACTIONS(943), + [sym_float] = ACTIONS(943), + [aux_sym_try_statement_token1] = ACTIONS(943), + [aux_sym_goto_statement_token1] = ACTIONS(943), + [aux_sym_continue_statement_token1] = ACTIONS(943), + [aux_sym_break_statement_token1] = ACTIONS(943), + [sym_integer] = ACTIONS(943), + [aux_sym_return_statement_token1] = ACTIONS(943), + [aux_sym_throw_expression_token1] = ACTIONS(943), + [aux_sym_while_statement_token1] = ACTIONS(943), + [aux_sym_while_statement_token2] = ACTIONS(943), + [aux_sym_do_statement_token1] = ACTIONS(943), + [aux_sym_for_statement_token1] = ACTIONS(943), + [aux_sym_for_statement_token2] = ACTIONS(943), + [aux_sym_foreach_statement_token1] = ACTIONS(943), + [aux_sym_foreach_statement_token2] = ACTIONS(943), + [aux_sym_if_statement_token1] = ACTIONS(943), + [aux_sym_if_statement_token2] = ACTIONS(943), + [aux_sym_else_if_clause_token1] = ACTIONS(943), + [aux_sym_else_clause_token1] = ACTIONS(943), + [aux_sym_match_expression_token1] = ACTIONS(943), + [aux_sym_match_default_expression_token1] = ACTIONS(943), + [aux_sym_switch_statement_token1] = ACTIONS(943), + [aux_sym_switch_block_token1] = ACTIONS(943), + [aux_sym_case_statement_token1] = ACTIONS(943), + [anon_sym_AT] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_clone] = ACTIONS(943), + [anon_sym_print] = ACTIONS(943), + [anon_sym_new] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [sym_shell_command_expression] = ACTIONS(941), + [anon_sym_list] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_parent] = ACTIONS(943), + [anon_sym_POUND_LBRACK] = ACTIONS(941), + [sym_string] = ACTIONS(941), + [sym_boolean] = ACTIONS(943), + [sym_null] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_yield] = ACTIONS(943), + [aux_sym_include_expression_token1] = ACTIONS(943), + [aux_sym_include_once_expression_token1] = ACTIONS(943), + [aux_sym_require_expression_token1] = ACTIONS(943), + [aux_sym_require_once_expression_token1] = ACTIONS(943), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(960), - [sym_heredoc] = ACTIONS(956), + [sym__automatic_semicolon] = ACTIONS(945), + [sym_heredoc] = ACTIONS(941), }, [414] = { [sym_text_interpolation] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(962), - [sym_name] = ACTIONS(964), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(966), - [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_class_modifier_token1] = ACTIONS(964), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(947), + [sym_name] = ACTIONS(949), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(951), + [aux_sym_function_static_declaration_token1] = ACTIONS(949), + [aux_sym_global_declaration_token1] = ACTIONS(949), + [aux_sym_namespace_definition_token1] = ACTIONS(949), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(949), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(949), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(949), + [anon_sym_BSLASH] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [aux_sym_trait_declaration_token1] = ACTIONS(949), + [aux_sym_interface_declaration_token1] = ACTIONS(949), + [aux_sym_class_declaration_token1] = ACTIONS(949), + [aux_sym_class_modifier_token1] = ACTIONS(949), + [aux_sym_class_modifier_token2] = ACTIONS(949), + [aux_sym_visibility_modifier_token1] = ACTIONS(949), + [aux_sym_visibility_modifier_token2] = ACTIONS(949), + [aux_sym_visibility_modifier_token3] = ACTIONS(949), + [aux_sym_arrow_function_token1] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_array] = ACTIONS(949), + [anon_sym_unset] = ACTIONS(949), + [aux_sym_echo_statement_token1] = ACTIONS(949), + [anon_sym_declare] = ACTIONS(949), + [aux_sym_declare_statement_token1] = ACTIONS(949), + [sym_float] = ACTIONS(949), + [aux_sym_try_statement_token1] = ACTIONS(949), + [aux_sym_goto_statement_token1] = ACTIONS(949), + [aux_sym_continue_statement_token1] = ACTIONS(949), + [aux_sym_break_statement_token1] = ACTIONS(949), + [sym_integer] = ACTIONS(949), + [aux_sym_return_statement_token1] = ACTIONS(949), + [aux_sym_throw_expression_token1] = ACTIONS(949), + [aux_sym_while_statement_token1] = ACTIONS(949), + [aux_sym_while_statement_token2] = ACTIONS(949), + [aux_sym_do_statement_token1] = ACTIONS(949), + [aux_sym_for_statement_token1] = ACTIONS(949), + [aux_sym_for_statement_token2] = ACTIONS(949), + [aux_sym_foreach_statement_token1] = ACTIONS(949), + [aux_sym_foreach_statement_token2] = ACTIONS(949), + [aux_sym_if_statement_token1] = ACTIONS(949), + [aux_sym_if_statement_token2] = ACTIONS(949), + [aux_sym_else_if_clause_token1] = ACTIONS(949), + [aux_sym_else_clause_token1] = ACTIONS(949), + [aux_sym_match_expression_token1] = ACTIONS(949), + [aux_sym_match_default_expression_token1] = ACTIONS(949), + [aux_sym_switch_statement_token1] = ACTIONS(949), + [aux_sym_switch_block_token1] = ACTIONS(949), + [aux_sym_case_statement_token1] = ACTIONS(949), + [anon_sym_AT] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_clone] = ACTIONS(949), + [anon_sym_print] = ACTIONS(949), + [anon_sym_new] = ACTIONS(949), + [anon_sym_PLUS_PLUS] = ACTIONS(947), + [anon_sym_DASH_DASH] = ACTIONS(947), + [sym_shell_command_expression] = ACTIONS(947), + [anon_sym_list] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_self] = ACTIONS(949), + [anon_sym_parent] = ACTIONS(949), + [anon_sym_POUND_LBRACK] = ACTIONS(947), + [sym_string] = ACTIONS(947), + [sym_boolean] = ACTIONS(949), + [sym_null] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_yield] = ACTIONS(949), + [aux_sym_include_expression_token1] = ACTIONS(949), + [aux_sym_include_once_expression_token1] = ACTIONS(949), + [aux_sym_require_expression_token1] = ACTIONS(949), + [aux_sym_require_once_expression_token1] = ACTIONS(949), [sym_comment] = ACTIONS(5), - [sym__automatic_semicolon] = ACTIONS(966), - [sym_heredoc] = ACTIONS(962), + [sym__automatic_semicolon] = ACTIONS(951), + [sym_heredoc] = ACTIONS(947), }, [415] = { [sym_text_interpolation] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(968), - [sym_name] = ACTIONS(970), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(968), - [aux_sym_function_static_declaration_token1] = ACTIONS(970), - [aux_sym_global_declaration_token1] = ACTIONS(970), - [aux_sym_namespace_definition_token1] = ACTIONS(970), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(970), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(970), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(970), - [anon_sym_BSLASH] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [aux_sym_trait_declaration_token1] = ACTIONS(970), - [aux_sym_interface_declaration_token1] = ACTIONS(970), - [aux_sym_class_declaration_token1] = ACTIONS(970), - [aux_sym_class_modifier_token1] = ACTIONS(970), - [aux_sym_class_modifier_token2] = ACTIONS(970), - [aux_sym_visibility_modifier_token1] = ACTIONS(970), - [aux_sym_visibility_modifier_token2] = ACTIONS(970), - [aux_sym_visibility_modifier_token3] = ACTIONS(970), - [aux_sym_arrow_function_token1] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_array] = ACTIONS(970), - [anon_sym_unset] = ACTIONS(970), - [aux_sym_echo_statement_token1] = ACTIONS(970), - [anon_sym_declare] = ACTIONS(970), - [aux_sym_declare_statement_token1] = ACTIONS(970), - [sym_float] = ACTIONS(970), - [aux_sym_try_statement_token1] = ACTIONS(970), - [aux_sym_goto_statement_token1] = ACTIONS(970), - [aux_sym_continue_statement_token1] = ACTIONS(970), - [aux_sym_break_statement_token1] = ACTIONS(970), - [sym_integer] = ACTIONS(970), - [aux_sym_return_statement_token1] = ACTIONS(970), - [aux_sym_throw_expression_token1] = ACTIONS(970), - [aux_sym_while_statement_token1] = ACTIONS(970), - [aux_sym_while_statement_token2] = ACTIONS(970), - [aux_sym_do_statement_token1] = ACTIONS(970), - [aux_sym_for_statement_token1] = ACTIONS(970), - [aux_sym_for_statement_token2] = ACTIONS(970), - [aux_sym_foreach_statement_token1] = ACTIONS(970), - [aux_sym_foreach_statement_token2] = ACTIONS(970), - [aux_sym_if_statement_token1] = ACTIONS(970), - [aux_sym_if_statement_token2] = ACTIONS(970), - [aux_sym_else_if_clause_token1] = ACTIONS(970), - [aux_sym_else_clause_token1] = ACTIONS(970), - [aux_sym_match_expression_token1] = ACTIONS(970), - [aux_sym_match_default_expression_token1] = ACTIONS(970), - [aux_sym_switch_statement_token1] = ACTIONS(970), - [aux_sym_switch_block_token1] = ACTIONS(970), - [aux_sym_case_statement_token1] = ACTIONS(970), - [anon_sym_AT] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_clone] = ACTIONS(970), - [anon_sym_print] = ACTIONS(970), - [anon_sym_new] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(968), - [sym_shell_command_expression] = ACTIONS(968), - [anon_sym_list] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_self] = ACTIONS(970), - [anon_sym_parent] = ACTIONS(970), - [sym_string] = ACTIONS(968), - [sym_boolean] = ACTIONS(970), - [sym_null] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [aux_sym_include_expression_token1] = ACTIONS(970), - [aux_sym_include_once_expression_token1] = ACTIONS(970), - [aux_sym_require_expression_token1] = ACTIONS(970), - [aux_sym_require_once_expression_token1] = ACTIONS(970), + [ts_builtin_sym_end] = ACTIONS(953), + [sym_name] = ACTIONS(955), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(953), + [aux_sym_function_static_declaration_token1] = ACTIONS(955), + [aux_sym_global_declaration_token1] = ACTIONS(955), + [aux_sym_namespace_definition_token1] = ACTIONS(955), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(955), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(955), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(955), + [anon_sym_BSLASH] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [aux_sym_trait_declaration_token1] = ACTIONS(955), + [aux_sym_interface_declaration_token1] = ACTIONS(955), + [aux_sym_class_declaration_token1] = ACTIONS(955), + [aux_sym_class_modifier_token1] = ACTIONS(955), + [aux_sym_class_modifier_token2] = ACTIONS(955), + [aux_sym_visibility_modifier_token1] = ACTIONS(955), + [aux_sym_visibility_modifier_token2] = ACTIONS(955), + [aux_sym_visibility_modifier_token3] = ACTIONS(955), + [aux_sym_arrow_function_token1] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_array] = ACTIONS(955), + [anon_sym_unset] = ACTIONS(955), + [aux_sym_echo_statement_token1] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [aux_sym_declare_statement_token1] = ACTIONS(955), + [sym_float] = ACTIONS(955), + [aux_sym_try_statement_token1] = ACTIONS(955), + [aux_sym_goto_statement_token1] = ACTIONS(955), + [aux_sym_continue_statement_token1] = ACTIONS(955), + [aux_sym_break_statement_token1] = ACTIONS(955), + [sym_integer] = ACTIONS(955), + [aux_sym_return_statement_token1] = ACTIONS(955), + [aux_sym_throw_expression_token1] = ACTIONS(955), + [aux_sym_while_statement_token1] = ACTIONS(955), + [aux_sym_while_statement_token2] = ACTIONS(955), + [aux_sym_do_statement_token1] = ACTIONS(955), + [aux_sym_for_statement_token1] = ACTIONS(955), + [aux_sym_for_statement_token2] = ACTIONS(955), + [aux_sym_foreach_statement_token1] = ACTIONS(955), + [aux_sym_foreach_statement_token2] = ACTIONS(955), + [aux_sym_if_statement_token1] = ACTIONS(955), + [aux_sym_if_statement_token2] = ACTIONS(955), + [aux_sym_else_if_clause_token1] = ACTIONS(955), + [aux_sym_else_clause_token1] = ACTIONS(955), + [aux_sym_match_expression_token1] = ACTIONS(955), + [aux_sym_match_default_expression_token1] = ACTIONS(955), + [aux_sym_switch_statement_token1] = ACTIONS(955), + [aux_sym_switch_block_token1] = ACTIONS(955), + [aux_sym_case_statement_token1] = ACTIONS(955), + [anon_sym_AT] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_TILDE] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_clone] = ACTIONS(955), + [anon_sym_print] = ACTIONS(955), + [anon_sym_new] = ACTIONS(955), + [anon_sym_PLUS_PLUS] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(953), + [sym_shell_command_expression] = ACTIONS(953), + [anon_sym_list] = ACTIONS(955), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_self] = ACTIONS(955), + [anon_sym_parent] = ACTIONS(955), + [anon_sym_POUND_LBRACK] = ACTIONS(953), + [sym_string] = ACTIONS(953), + [sym_boolean] = ACTIONS(955), + [sym_null] = ACTIONS(955), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_yield] = ACTIONS(955), + [aux_sym_include_expression_token1] = ACTIONS(955), + [aux_sym_include_once_expression_token1] = ACTIONS(955), + [aux_sym_require_expression_token1] = ACTIONS(955), + [aux_sym_require_once_expression_token1] = ACTIONS(955), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(968), + [sym__automatic_semicolon] = ACTIONS(953), + [sym_heredoc] = ACTIONS(953), }, [416] = { [sym_text_interpolation] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(972), - [sym_name] = ACTIONS(974), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(972), - [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_class_modifier_token1] = ACTIONS(974), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(957), + [sym_name] = ACTIONS(959), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(961), + [aux_sym_function_static_declaration_token1] = ACTIONS(959), + [aux_sym_global_declaration_token1] = ACTIONS(959), + [aux_sym_namespace_definition_token1] = ACTIONS(959), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(959), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(959), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(959), + [anon_sym_BSLASH] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(957), + [aux_sym_trait_declaration_token1] = ACTIONS(959), + [aux_sym_interface_declaration_token1] = ACTIONS(959), + [aux_sym_class_declaration_token1] = ACTIONS(959), + [aux_sym_class_modifier_token1] = ACTIONS(959), + [aux_sym_class_modifier_token2] = ACTIONS(959), + [aux_sym_visibility_modifier_token1] = ACTIONS(959), + [aux_sym_visibility_modifier_token2] = ACTIONS(959), + [aux_sym_visibility_modifier_token3] = ACTIONS(959), + [aux_sym_arrow_function_token1] = ACTIONS(959), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_array] = ACTIONS(959), + [anon_sym_unset] = ACTIONS(959), + [aux_sym_echo_statement_token1] = ACTIONS(959), + [anon_sym_declare] = ACTIONS(959), + [aux_sym_declare_statement_token1] = ACTIONS(959), + [sym_float] = ACTIONS(959), + [aux_sym_try_statement_token1] = ACTIONS(959), + [aux_sym_goto_statement_token1] = ACTIONS(959), + [aux_sym_continue_statement_token1] = ACTIONS(959), + [aux_sym_break_statement_token1] = ACTIONS(959), + [sym_integer] = ACTIONS(959), + [aux_sym_return_statement_token1] = ACTIONS(959), + [aux_sym_throw_expression_token1] = ACTIONS(959), + [aux_sym_while_statement_token1] = ACTIONS(959), + [aux_sym_while_statement_token2] = ACTIONS(959), + [aux_sym_do_statement_token1] = ACTIONS(959), + [aux_sym_for_statement_token1] = ACTIONS(959), + [aux_sym_for_statement_token2] = ACTIONS(959), + [aux_sym_foreach_statement_token1] = ACTIONS(959), + [aux_sym_foreach_statement_token2] = ACTIONS(959), + [aux_sym_if_statement_token1] = ACTIONS(959), + [aux_sym_if_statement_token2] = ACTIONS(959), + [aux_sym_else_if_clause_token1] = ACTIONS(959), + [aux_sym_else_clause_token1] = ACTIONS(959), + [aux_sym_match_expression_token1] = ACTIONS(959), + [aux_sym_match_default_expression_token1] = ACTIONS(959), + [aux_sym_switch_statement_token1] = ACTIONS(959), + [aux_sym_switch_block_token1] = ACTIONS(959), + [aux_sym_case_statement_token1] = ACTIONS(959), + [anon_sym_AT] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_clone] = ACTIONS(959), + [anon_sym_print] = ACTIONS(959), + [anon_sym_new] = ACTIONS(959), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [sym_shell_command_expression] = ACTIONS(957), + [anon_sym_list] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(957), + [anon_sym_self] = ACTIONS(959), + [anon_sym_parent] = ACTIONS(959), + [anon_sym_POUND_LBRACK] = ACTIONS(957), + [sym_string] = ACTIONS(957), + [sym_boolean] = ACTIONS(959), + [sym_null] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(957), + [anon_sym_yield] = ACTIONS(959), + [aux_sym_include_expression_token1] = ACTIONS(959), + [aux_sym_include_once_expression_token1] = ACTIONS(959), + [aux_sym_require_expression_token1] = ACTIONS(959), + [aux_sym_require_once_expression_token1] = ACTIONS(959), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(972), + [sym__automatic_semicolon] = ACTIONS(961), + [sym_heredoc] = ACTIONS(957), }, [417] = { [sym_text_interpolation] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(976), - [sym_name] = ACTIONS(978), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(976), - [aux_sym_function_static_declaration_token1] = ACTIONS(978), - [aux_sym_global_declaration_token1] = ACTIONS(978), - [aux_sym_namespace_definition_token1] = ACTIONS(978), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(978), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(978), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [aux_sym_trait_declaration_token1] = ACTIONS(978), - [aux_sym_interface_declaration_token1] = ACTIONS(978), - [aux_sym_class_declaration_token1] = ACTIONS(978), - [aux_sym_class_modifier_token1] = ACTIONS(978), - [aux_sym_class_modifier_token2] = ACTIONS(978), - [aux_sym_visibility_modifier_token1] = ACTIONS(978), - [aux_sym_visibility_modifier_token2] = ACTIONS(978), - [aux_sym_visibility_modifier_token3] = ACTIONS(978), - [aux_sym_arrow_function_token1] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_array] = ACTIONS(978), - [anon_sym_unset] = ACTIONS(978), - [aux_sym_echo_statement_token1] = ACTIONS(978), - [anon_sym_declare] = ACTIONS(978), - [aux_sym_declare_statement_token1] = ACTIONS(978), - [sym_float] = ACTIONS(978), - [aux_sym_try_statement_token1] = ACTIONS(978), - [aux_sym_goto_statement_token1] = ACTIONS(978), - [aux_sym_continue_statement_token1] = ACTIONS(978), - [aux_sym_break_statement_token1] = ACTIONS(978), - [sym_integer] = ACTIONS(978), - [aux_sym_return_statement_token1] = ACTIONS(978), - [aux_sym_throw_expression_token1] = ACTIONS(978), - [aux_sym_while_statement_token1] = ACTIONS(978), - [aux_sym_while_statement_token2] = ACTIONS(978), - [aux_sym_do_statement_token1] = ACTIONS(978), - [aux_sym_for_statement_token1] = ACTIONS(978), - [aux_sym_for_statement_token2] = ACTIONS(978), - [aux_sym_foreach_statement_token1] = ACTIONS(978), - [aux_sym_foreach_statement_token2] = ACTIONS(978), - [aux_sym_if_statement_token1] = ACTIONS(978), - [aux_sym_if_statement_token2] = ACTIONS(978), - [aux_sym_else_if_clause_token1] = ACTIONS(978), - [aux_sym_else_clause_token1] = ACTIONS(978), - [aux_sym_match_expression_token1] = ACTIONS(978), - [aux_sym_match_default_expression_token1] = ACTIONS(978), - [aux_sym_switch_statement_token1] = ACTIONS(978), - [aux_sym_switch_block_token1] = ACTIONS(978), - [aux_sym_case_statement_token1] = ACTIONS(978), - [anon_sym_AT] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_clone] = ACTIONS(978), - [anon_sym_print] = ACTIONS(978), - [anon_sym_new] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(976), - [sym_shell_command_expression] = ACTIONS(976), - [anon_sym_list] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_self] = ACTIONS(978), - [anon_sym_parent] = ACTIONS(978), - [sym_string] = ACTIONS(976), - [sym_boolean] = ACTIONS(978), - [sym_null] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_yield] = ACTIONS(978), - [aux_sym_include_expression_token1] = ACTIONS(978), - [aux_sym_include_once_expression_token1] = ACTIONS(978), - [aux_sym_require_expression_token1] = ACTIONS(978), - [aux_sym_require_once_expression_token1] = ACTIONS(978), + [ts_builtin_sym_end] = ACTIONS(963), + [sym_name] = ACTIONS(965), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(963), + [aux_sym_function_static_declaration_token1] = ACTIONS(965), + [aux_sym_global_declaration_token1] = ACTIONS(965), + [aux_sym_namespace_definition_token1] = ACTIONS(965), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(965), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(965), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(965), + [anon_sym_BSLASH] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [aux_sym_trait_declaration_token1] = ACTIONS(965), + [aux_sym_interface_declaration_token1] = ACTIONS(965), + [aux_sym_class_declaration_token1] = ACTIONS(965), + [aux_sym_class_modifier_token1] = ACTIONS(965), + [aux_sym_class_modifier_token2] = ACTIONS(965), + [aux_sym_visibility_modifier_token1] = ACTIONS(965), + [aux_sym_visibility_modifier_token2] = ACTIONS(965), + [aux_sym_visibility_modifier_token3] = ACTIONS(965), + [aux_sym_arrow_function_token1] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_array] = ACTIONS(965), + [anon_sym_unset] = ACTIONS(965), + [aux_sym_echo_statement_token1] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [aux_sym_declare_statement_token1] = ACTIONS(965), + [sym_float] = ACTIONS(965), + [aux_sym_try_statement_token1] = ACTIONS(965), + [aux_sym_goto_statement_token1] = ACTIONS(965), + [aux_sym_continue_statement_token1] = ACTIONS(965), + [aux_sym_break_statement_token1] = ACTIONS(965), + [sym_integer] = ACTIONS(965), + [aux_sym_return_statement_token1] = ACTIONS(965), + [aux_sym_throw_expression_token1] = ACTIONS(965), + [aux_sym_while_statement_token1] = ACTIONS(965), + [aux_sym_while_statement_token2] = ACTIONS(965), + [aux_sym_do_statement_token1] = ACTIONS(965), + [aux_sym_for_statement_token1] = ACTIONS(965), + [aux_sym_for_statement_token2] = ACTIONS(965), + [aux_sym_foreach_statement_token1] = ACTIONS(965), + [aux_sym_foreach_statement_token2] = ACTIONS(965), + [aux_sym_if_statement_token1] = ACTIONS(965), + [aux_sym_if_statement_token2] = ACTIONS(965), + [aux_sym_else_if_clause_token1] = ACTIONS(965), + [aux_sym_else_clause_token1] = ACTIONS(965), + [aux_sym_match_expression_token1] = ACTIONS(965), + [aux_sym_match_default_expression_token1] = ACTIONS(965), + [aux_sym_switch_statement_token1] = ACTIONS(965), + [aux_sym_switch_block_token1] = ACTIONS(965), + [aux_sym_case_statement_token1] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_clone] = ACTIONS(965), + [anon_sym_print] = ACTIONS(965), + [anon_sym_new] = ACTIONS(965), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [sym_shell_command_expression] = ACTIONS(963), + [anon_sym_list] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_self] = ACTIONS(965), + [anon_sym_parent] = ACTIONS(965), + [anon_sym_POUND_LBRACK] = ACTIONS(963), + [sym_string] = ACTIONS(963), + [sym_boolean] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_yield] = ACTIONS(965), + [aux_sym_include_expression_token1] = ACTIONS(965), + [aux_sym_include_once_expression_token1] = ACTIONS(965), + [aux_sym_require_expression_token1] = ACTIONS(965), + [aux_sym_require_once_expression_token1] = ACTIONS(965), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(976), + [sym__automatic_semicolon] = ACTIONS(963), + [sym_heredoc] = ACTIONS(963), }, [418] = { [sym_text_interpolation] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(980), - [sym_name] = ACTIONS(982), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(980), - [aux_sym_function_static_declaration_token1] = ACTIONS(982), - [aux_sym_global_declaration_token1] = ACTIONS(982), - [aux_sym_namespace_definition_token1] = ACTIONS(982), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(982), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(982), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(982), - [anon_sym_BSLASH] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [aux_sym_trait_declaration_token1] = ACTIONS(982), - [aux_sym_interface_declaration_token1] = ACTIONS(982), - [aux_sym_class_declaration_token1] = ACTIONS(982), - [aux_sym_class_modifier_token1] = ACTIONS(982), - [aux_sym_class_modifier_token2] = ACTIONS(982), - [aux_sym_visibility_modifier_token1] = ACTIONS(982), - [aux_sym_visibility_modifier_token2] = ACTIONS(982), - [aux_sym_visibility_modifier_token3] = ACTIONS(982), - [aux_sym_arrow_function_token1] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_array] = ACTIONS(982), - [anon_sym_unset] = ACTIONS(982), - [aux_sym_echo_statement_token1] = ACTIONS(982), - [anon_sym_declare] = ACTIONS(982), - [aux_sym_declare_statement_token1] = ACTIONS(982), - [sym_float] = ACTIONS(982), - [aux_sym_try_statement_token1] = ACTIONS(982), - [aux_sym_goto_statement_token1] = ACTIONS(982), - [aux_sym_continue_statement_token1] = ACTIONS(982), - [aux_sym_break_statement_token1] = ACTIONS(982), - [sym_integer] = ACTIONS(982), - [aux_sym_return_statement_token1] = ACTIONS(982), - [aux_sym_throw_expression_token1] = ACTIONS(982), - [aux_sym_while_statement_token1] = ACTIONS(982), - [aux_sym_while_statement_token2] = ACTIONS(982), - [aux_sym_do_statement_token1] = ACTIONS(982), - [aux_sym_for_statement_token1] = ACTIONS(982), - [aux_sym_for_statement_token2] = ACTIONS(982), - [aux_sym_foreach_statement_token1] = ACTIONS(982), - [aux_sym_foreach_statement_token2] = ACTIONS(982), - [aux_sym_if_statement_token1] = ACTIONS(982), - [aux_sym_if_statement_token2] = ACTIONS(982), - [aux_sym_else_if_clause_token1] = ACTIONS(982), - [aux_sym_else_clause_token1] = ACTIONS(982), - [aux_sym_match_expression_token1] = ACTIONS(982), - [aux_sym_match_default_expression_token1] = ACTIONS(982), - [aux_sym_switch_statement_token1] = ACTIONS(982), - [aux_sym_switch_block_token1] = ACTIONS(982), - [aux_sym_case_statement_token1] = ACTIONS(982), - [anon_sym_AT] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_clone] = ACTIONS(982), - [anon_sym_print] = ACTIONS(982), - [anon_sym_new] = ACTIONS(982), - [anon_sym_PLUS_PLUS] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(980), - [sym_shell_command_expression] = ACTIONS(980), - [anon_sym_list] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_self] = ACTIONS(982), - [anon_sym_parent] = ACTIONS(982), - [sym_string] = ACTIONS(980), - [sym_boolean] = ACTIONS(982), - [sym_null] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_yield] = ACTIONS(982), - [aux_sym_include_expression_token1] = ACTIONS(982), - [aux_sym_include_once_expression_token1] = ACTIONS(982), - [aux_sym_require_expression_token1] = ACTIONS(982), - [aux_sym_require_once_expression_token1] = ACTIONS(982), + [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), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(980), + [sym__automatic_semicolon] = ACTIONS(971), + [sym_heredoc] = ACTIONS(967), }, [419] = { [sym_text_interpolation] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(984), - [sym_name] = ACTIONS(986), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(984), - [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_class_modifier_token1] = ACTIONS(986), - [aux_sym_class_modifier_token2] = 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), - [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), + [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), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(984), + [sym__automatic_semicolon] = ACTIONS(977), + [sym_heredoc] = ACTIONS(973), }, [420] = { [sym_text_interpolation] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(984), - [sym_name] = ACTIONS(986), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(984), - [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_class_modifier_token1] = ACTIONS(986), - [aux_sym_class_modifier_token2] = 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), - [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), + [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), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(984), + [sym__automatic_semicolon] = ACTIONS(983), + [sym_heredoc] = ACTIONS(979), }, [421] = { [sym_text_interpolation] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(988), - [sym_name] = ACTIONS(990), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(988), - [aux_sym_function_static_declaration_token1] = ACTIONS(990), - [aux_sym_global_declaration_token1] = ACTIONS(990), - [aux_sym_namespace_definition_token1] = ACTIONS(990), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(990), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(990), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(990), - [anon_sym_BSLASH] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [aux_sym_trait_declaration_token1] = ACTIONS(990), - [aux_sym_interface_declaration_token1] = ACTIONS(990), - [aux_sym_class_declaration_token1] = ACTIONS(990), - [aux_sym_class_modifier_token1] = ACTIONS(990), - [aux_sym_class_modifier_token2] = ACTIONS(990), - [aux_sym_visibility_modifier_token1] = ACTIONS(990), - [aux_sym_visibility_modifier_token2] = ACTIONS(990), - [aux_sym_visibility_modifier_token3] = ACTIONS(990), - [aux_sym_arrow_function_token1] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_array] = ACTIONS(990), - [anon_sym_unset] = ACTIONS(990), - [aux_sym_echo_statement_token1] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [aux_sym_declare_statement_token1] = ACTIONS(990), - [sym_float] = ACTIONS(990), - [aux_sym_try_statement_token1] = ACTIONS(990), - [aux_sym_goto_statement_token1] = ACTIONS(990), - [aux_sym_continue_statement_token1] = ACTIONS(990), - [aux_sym_break_statement_token1] = ACTIONS(990), - [sym_integer] = ACTIONS(990), - [aux_sym_return_statement_token1] = ACTIONS(990), - [aux_sym_throw_expression_token1] = ACTIONS(990), - [aux_sym_while_statement_token1] = ACTIONS(990), - [aux_sym_while_statement_token2] = ACTIONS(990), - [aux_sym_do_statement_token1] = ACTIONS(990), - [aux_sym_for_statement_token1] = ACTIONS(990), - [aux_sym_for_statement_token2] = ACTIONS(990), - [aux_sym_foreach_statement_token1] = ACTIONS(990), - [aux_sym_foreach_statement_token2] = ACTIONS(990), - [aux_sym_if_statement_token1] = ACTIONS(990), - [aux_sym_if_statement_token2] = ACTIONS(990), - [aux_sym_else_if_clause_token1] = ACTIONS(990), - [aux_sym_else_clause_token1] = ACTIONS(990), - [aux_sym_match_expression_token1] = ACTIONS(990), - [aux_sym_match_default_expression_token1] = ACTIONS(990), - [aux_sym_switch_statement_token1] = ACTIONS(990), - [aux_sym_switch_block_token1] = ACTIONS(990), - [aux_sym_case_statement_token1] = ACTIONS(990), - [anon_sym_AT] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(988), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_clone] = ACTIONS(990), - [anon_sym_print] = ACTIONS(990), - [anon_sym_new] = ACTIONS(990), - [anon_sym_PLUS_PLUS] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(988), - [sym_shell_command_expression] = ACTIONS(988), - [anon_sym_list] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_self] = ACTIONS(990), - [anon_sym_parent] = ACTIONS(990), - [sym_string] = ACTIONS(988), - [sym_boolean] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_yield] = ACTIONS(990), - [aux_sym_include_expression_token1] = ACTIONS(990), - [aux_sym_include_once_expression_token1] = ACTIONS(990), - [aux_sym_require_expression_token1] = ACTIONS(990), - [aux_sym_require_once_expression_token1] = ACTIONS(990), + [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), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(988), + [sym__automatic_semicolon] = ACTIONS(989), + [sym_heredoc] = ACTIONS(985), }, [422] = { [sym_text_interpolation] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(992), - [sym_name] = ACTIONS(994), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(992), - [aux_sym_function_static_declaration_token1] = ACTIONS(994), - [aux_sym_global_declaration_token1] = ACTIONS(994), - [aux_sym_namespace_definition_token1] = ACTIONS(994), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(994), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(994), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(994), - [anon_sym_BSLASH] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [aux_sym_trait_declaration_token1] = ACTIONS(994), - [aux_sym_interface_declaration_token1] = ACTIONS(994), - [aux_sym_class_declaration_token1] = ACTIONS(994), - [aux_sym_class_modifier_token1] = ACTIONS(994), - [aux_sym_class_modifier_token2] = ACTIONS(994), - [aux_sym_visibility_modifier_token1] = ACTIONS(994), - [aux_sym_visibility_modifier_token2] = ACTIONS(994), - [aux_sym_visibility_modifier_token3] = ACTIONS(994), - [aux_sym_arrow_function_token1] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_array] = ACTIONS(994), - [anon_sym_unset] = ACTIONS(994), - [aux_sym_echo_statement_token1] = ACTIONS(994), - [anon_sym_declare] = ACTIONS(994), - [aux_sym_declare_statement_token1] = ACTIONS(994), - [sym_float] = ACTIONS(994), - [aux_sym_try_statement_token1] = ACTIONS(994), - [aux_sym_goto_statement_token1] = ACTIONS(994), - [aux_sym_continue_statement_token1] = ACTIONS(994), - [aux_sym_break_statement_token1] = ACTIONS(994), - [sym_integer] = ACTIONS(994), - [aux_sym_return_statement_token1] = ACTIONS(994), - [aux_sym_throw_expression_token1] = ACTIONS(994), - [aux_sym_while_statement_token1] = ACTIONS(994), - [aux_sym_while_statement_token2] = ACTIONS(994), - [aux_sym_do_statement_token1] = ACTIONS(994), - [aux_sym_for_statement_token1] = ACTIONS(994), - [aux_sym_for_statement_token2] = ACTIONS(994), - [aux_sym_foreach_statement_token1] = ACTIONS(994), - [aux_sym_foreach_statement_token2] = ACTIONS(994), - [aux_sym_if_statement_token1] = ACTIONS(994), - [aux_sym_if_statement_token2] = ACTIONS(994), - [aux_sym_else_if_clause_token1] = ACTIONS(994), - [aux_sym_else_clause_token1] = ACTIONS(994), - [aux_sym_match_expression_token1] = ACTIONS(994), - [aux_sym_match_default_expression_token1] = ACTIONS(994), - [aux_sym_switch_statement_token1] = ACTIONS(994), - [aux_sym_switch_block_token1] = ACTIONS(994), - [aux_sym_case_statement_token1] = ACTIONS(994), - [anon_sym_AT] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_TILDE] = ACTIONS(992), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_clone] = ACTIONS(994), - [anon_sym_print] = ACTIONS(994), - [anon_sym_new] = ACTIONS(994), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [sym_shell_command_expression] = ACTIONS(992), - [anon_sym_list] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_self] = ACTIONS(994), - [anon_sym_parent] = ACTIONS(994), - [sym_string] = ACTIONS(992), - [sym_boolean] = ACTIONS(994), - [sym_null] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_yield] = ACTIONS(994), - [aux_sym_include_expression_token1] = ACTIONS(994), - [aux_sym_include_once_expression_token1] = ACTIONS(994), - [aux_sym_require_expression_token1] = ACTIONS(994), - [aux_sym_require_once_expression_token1] = ACTIONS(994), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_name] = ACTIONS(993), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(995), + [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), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(992), + [sym__automatic_semicolon] = ACTIONS(995), + [sym_heredoc] = ACTIONS(991), }, [423] = { [sym_text_interpolation] = STATE(423), - [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_class_modifier_token1] = ACTIONS(998), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(997), + [sym_name] = ACTIONS(999), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1001), + [aux_sym_function_static_declaration_token1] = ACTIONS(999), + [aux_sym_global_declaration_token1] = ACTIONS(999), + [aux_sym_namespace_definition_token1] = ACTIONS(999), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(999), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(999), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(999), + [anon_sym_BSLASH] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_RBRACE] = ACTIONS(997), + [aux_sym_trait_declaration_token1] = ACTIONS(999), + [aux_sym_interface_declaration_token1] = ACTIONS(999), + [aux_sym_class_declaration_token1] = ACTIONS(999), + [aux_sym_class_modifier_token1] = ACTIONS(999), + [aux_sym_class_modifier_token2] = ACTIONS(999), + [aux_sym_visibility_modifier_token1] = ACTIONS(999), + [aux_sym_visibility_modifier_token2] = ACTIONS(999), + [aux_sym_visibility_modifier_token3] = ACTIONS(999), + [aux_sym_arrow_function_token1] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_array] = ACTIONS(999), + [anon_sym_unset] = ACTIONS(999), + [aux_sym_echo_statement_token1] = ACTIONS(999), + [anon_sym_declare] = ACTIONS(999), + [aux_sym_declare_statement_token1] = ACTIONS(999), + [sym_float] = ACTIONS(999), + [aux_sym_try_statement_token1] = ACTIONS(999), + [aux_sym_goto_statement_token1] = ACTIONS(999), + [aux_sym_continue_statement_token1] = ACTIONS(999), + [aux_sym_break_statement_token1] = ACTIONS(999), + [sym_integer] = ACTIONS(999), + [aux_sym_return_statement_token1] = ACTIONS(999), + [aux_sym_throw_expression_token1] = ACTIONS(999), + [aux_sym_while_statement_token1] = ACTIONS(999), + [aux_sym_while_statement_token2] = ACTIONS(999), + [aux_sym_do_statement_token1] = ACTIONS(999), + [aux_sym_for_statement_token1] = ACTIONS(999), + [aux_sym_for_statement_token2] = ACTIONS(999), + [aux_sym_foreach_statement_token1] = ACTIONS(999), + [aux_sym_foreach_statement_token2] = ACTIONS(999), + [aux_sym_if_statement_token1] = ACTIONS(999), + [aux_sym_if_statement_token2] = ACTIONS(999), + [aux_sym_else_if_clause_token1] = ACTIONS(999), + [aux_sym_else_clause_token1] = ACTIONS(999), + [aux_sym_match_expression_token1] = ACTIONS(999), + [aux_sym_match_default_expression_token1] = ACTIONS(999), + [aux_sym_switch_statement_token1] = ACTIONS(999), + [aux_sym_switch_block_token1] = ACTIONS(999), + [aux_sym_case_statement_token1] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_TILDE] = ACTIONS(997), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_clone] = ACTIONS(999), + [anon_sym_print] = ACTIONS(999), + [anon_sym_new] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(997), + [sym_shell_command_expression] = ACTIONS(997), + [anon_sym_list] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_self] = ACTIONS(999), + [anon_sym_parent] = ACTIONS(999), + [anon_sym_POUND_LBRACK] = ACTIONS(997), + [sym_string] = ACTIONS(997), + [sym_boolean] = ACTIONS(999), + [sym_null] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(997), + [anon_sym_yield] = ACTIONS(999), + [aux_sym_include_expression_token1] = ACTIONS(999), + [aux_sym_include_once_expression_token1] = ACTIONS(999), + [aux_sym_require_expression_token1] = ACTIONS(999), + [aux_sym_require_once_expression_token1] = ACTIONS(999), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(996), + [sym__automatic_semicolon] = ACTIONS(1001), + [sym_heredoc] = ACTIONS(997), }, [424] = { [sym_text_interpolation] = STATE(424), - [ts_builtin_sym_end] = ACTIONS(1000), - [sym_name] = ACTIONS(1002), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1000), - [aux_sym_function_static_declaration_token1] = ACTIONS(1002), - [aux_sym_global_declaration_token1] = ACTIONS(1002), - [aux_sym_namespace_definition_token1] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1002), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1002), - [anon_sym_BSLASH] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [aux_sym_trait_declaration_token1] = ACTIONS(1002), - [aux_sym_interface_declaration_token1] = ACTIONS(1002), - [aux_sym_class_declaration_token1] = ACTIONS(1002), - [aux_sym_class_modifier_token1] = ACTIONS(1002), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1003), + [sym_name] = ACTIONS(1005), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1007), + [aux_sym_function_static_declaration_token1] = ACTIONS(1005), + [aux_sym_global_declaration_token1] = ACTIONS(1005), + [aux_sym_namespace_definition_token1] = ACTIONS(1005), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1005), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1005), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1005), + [anon_sym_BSLASH] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [aux_sym_trait_declaration_token1] = ACTIONS(1005), + [aux_sym_interface_declaration_token1] = ACTIONS(1005), + [aux_sym_class_declaration_token1] = ACTIONS(1005), + [aux_sym_class_modifier_token1] = ACTIONS(1005), + [aux_sym_class_modifier_token2] = ACTIONS(1005), + [aux_sym_visibility_modifier_token1] = ACTIONS(1005), + [aux_sym_visibility_modifier_token2] = ACTIONS(1005), + [aux_sym_visibility_modifier_token3] = ACTIONS(1005), + [aux_sym_arrow_function_token1] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_array] = ACTIONS(1005), + [anon_sym_unset] = ACTIONS(1005), + [aux_sym_echo_statement_token1] = ACTIONS(1005), + [anon_sym_declare] = ACTIONS(1005), + [aux_sym_declare_statement_token1] = ACTIONS(1005), + [sym_float] = ACTIONS(1005), + [aux_sym_try_statement_token1] = ACTIONS(1005), + [aux_sym_goto_statement_token1] = ACTIONS(1005), + [aux_sym_continue_statement_token1] = ACTIONS(1005), + [aux_sym_break_statement_token1] = ACTIONS(1005), + [sym_integer] = ACTIONS(1005), + [aux_sym_return_statement_token1] = ACTIONS(1005), + [aux_sym_throw_expression_token1] = ACTIONS(1005), + [aux_sym_while_statement_token1] = ACTIONS(1005), + [aux_sym_while_statement_token2] = ACTIONS(1005), + [aux_sym_do_statement_token1] = ACTIONS(1005), + [aux_sym_for_statement_token1] = ACTIONS(1005), + [aux_sym_for_statement_token2] = ACTIONS(1005), + [aux_sym_foreach_statement_token1] = ACTIONS(1005), + [aux_sym_foreach_statement_token2] = ACTIONS(1005), + [aux_sym_if_statement_token1] = ACTIONS(1005), + [aux_sym_if_statement_token2] = ACTIONS(1005), + [aux_sym_else_if_clause_token1] = ACTIONS(1005), + [aux_sym_else_clause_token1] = ACTIONS(1005), + [aux_sym_match_expression_token1] = ACTIONS(1005), + [aux_sym_match_default_expression_token1] = ACTIONS(1005), + [aux_sym_switch_statement_token1] = ACTIONS(1005), + [aux_sym_switch_block_token1] = ACTIONS(1005), + [aux_sym_case_statement_token1] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_TILDE] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_clone] = ACTIONS(1005), + [anon_sym_print] = ACTIONS(1005), + [anon_sym_new] = ACTIONS(1005), + [anon_sym_PLUS_PLUS] = ACTIONS(1003), + [anon_sym_DASH_DASH] = ACTIONS(1003), + [sym_shell_command_expression] = ACTIONS(1003), + [anon_sym_list] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_self] = ACTIONS(1005), + [anon_sym_parent] = ACTIONS(1005), + [anon_sym_POUND_LBRACK] = ACTIONS(1003), + [sym_string] = ACTIONS(1003), + [sym_boolean] = ACTIONS(1005), + [sym_null] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [aux_sym_include_expression_token1] = ACTIONS(1005), + [aux_sym_include_once_expression_token1] = ACTIONS(1005), + [aux_sym_require_expression_token1] = ACTIONS(1005), + [aux_sym_require_once_expression_token1] = ACTIONS(1005), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1000), + [sym__automatic_semicolon] = ACTIONS(1007), + [sym_heredoc] = ACTIONS(1003), }, [425] = { [sym_text_interpolation] = STATE(425), - [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_class_modifier_token1] = ACTIONS(998), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1009), + [sym_name] = ACTIONS(1011), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1009), + [aux_sym_function_static_declaration_token1] = ACTIONS(1011), + [aux_sym_global_declaration_token1] = ACTIONS(1011), + [aux_sym_namespace_definition_token1] = ACTIONS(1011), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1011), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1011), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1011), + [anon_sym_BSLASH] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1009), + [aux_sym_trait_declaration_token1] = ACTIONS(1011), + [aux_sym_interface_declaration_token1] = ACTIONS(1011), + [aux_sym_class_declaration_token1] = ACTIONS(1011), + [aux_sym_class_modifier_token1] = ACTIONS(1011), + [aux_sym_class_modifier_token2] = ACTIONS(1011), + [aux_sym_visibility_modifier_token1] = ACTIONS(1011), + [aux_sym_visibility_modifier_token2] = ACTIONS(1011), + [aux_sym_visibility_modifier_token3] = ACTIONS(1011), + [aux_sym_arrow_function_token1] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1009), + [anon_sym_array] = ACTIONS(1011), + [anon_sym_unset] = ACTIONS(1011), + [aux_sym_echo_statement_token1] = ACTIONS(1011), + [anon_sym_declare] = ACTIONS(1011), + [aux_sym_declare_statement_token1] = ACTIONS(1011), + [sym_float] = ACTIONS(1011), + [aux_sym_try_statement_token1] = ACTIONS(1011), + [aux_sym_goto_statement_token1] = ACTIONS(1011), + [aux_sym_continue_statement_token1] = ACTIONS(1011), + [aux_sym_break_statement_token1] = ACTIONS(1011), + [sym_integer] = ACTIONS(1011), + [aux_sym_return_statement_token1] = ACTIONS(1011), + [aux_sym_throw_expression_token1] = ACTIONS(1011), + [aux_sym_while_statement_token1] = ACTIONS(1011), + [aux_sym_while_statement_token2] = ACTIONS(1011), + [aux_sym_do_statement_token1] = ACTIONS(1011), + [aux_sym_for_statement_token1] = ACTIONS(1011), + [aux_sym_for_statement_token2] = ACTIONS(1011), + [aux_sym_foreach_statement_token1] = ACTIONS(1011), + [aux_sym_foreach_statement_token2] = ACTIONS(1011), + [aux_sym_if_statement_token1] = ACTIONS(1011), + [aux_sym_if_statement_token2] = ACTIONS(1011), + [aux_sym_else_if_clause_token1] = ACTIONS(1011), + [aux_sym_else_clause_token1] = ACTIONS(1011), + [aux_sym_match_expression_token1] = ACTIONS(1011), + [aux_sym_match_default_expression_token1] = ACTIONS(1011), + [aux_sym_switch_statement_token1] = ACTIONS(1011), + [aux_sym_switch_block_token1] = ACTIONS(1011), + [aux_sym_case_statement_token1] = ACTIONS(1011), + [anon_sym_AT] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_TILDE] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1009), + [anon_sym_clone] = ACTIONS(1011), + [anon_sym_print] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1009), + [anon_sym_DASH_DASH] = ACTIONS(1009), + [sym_shell_command_expression] = ACTIONS(1009), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_self] = ACTIONS(1011), + [anon_sym_parent] = ACTIONS(1011), + [anon_sym_POUND_LBRACK] = ACTIONS(1009), + [sym_string] = ACTIONS(1009), + [sym_boolean] = ACTIONS(1011), + [sym_null] = ACTIONS(1011), + [anon_sym_DOLLAR] = ACTIONS(1009), + [anon_sym_yield] = ACTIONS(1011), + [aux_sym_include_expression_token1] = ACTIONS(1011), + [aux_sym_include_once_expression_token1] = ACTIONS(1011), + [aux_sym_require_expression_token1] = ACTIONS(1011), + [aux_sym_require_once_expression_token1] = ACTIONS(1011), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(996), + [sym_heredoc] = ACTIONS(1009), }, [426] = { [sym_text_interpolation] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(1004), - [sym_name] = ACTIONS(1006), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1004), - [aux_sym_function_static_declaration_token1] = ACTIONS(1006), - [aux_sym_global_declaration_token1] = ACTIONS(1006), - [aux_sym_namespace_definition_token1] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1006), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1006), - [anon_sym_BSLASH] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [aux_sym_trait_declaration_token1] = ACTIONS(1006), - [aux_sym_interface_declaration_token1] = ACTIONS(1006), - [aux_sym_class_declaration_token1] = ACTIONS(1006), - [aux_sym_class_modifier_token1] = ACTIONS(1006), - [aux_sym_class_modifier_token2] = ACTIONS(1006), - [aux_sym_visibility_modifier_token1] = ACTIONS(1006), - [aux_sym_visibility_modifier_token2] = ACTIONS(1006), - [aux_sym_visibility_modifier_token3] = ACTIONS(1006), - [aux_sym_arrow_function_token1] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_array] = ACTIONS(1006), - [anon_sym_unset] = ACTIONS(1006), - [aux_sym_echo_statement_token1] = ACTIONS(1006), - [anon_sym_declare] = ACTIONS(1006), - [aux_sym_declare_statement_token1] = ACTIONS(1006), - [sym_float] = ACTIONS(1006), - [aux_sym_try_statement_token1] = ACTIONS(1006), - [aux_sym_goto_statement_token1] = ACTIONS(1006), - [aux_sym_continue_statement_token1] = ACTIONS(1006), - [aux_sym_break_statement_token1] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [aux_sym_return_statement_token1] = ACTIONS(1006), - [aux_sym_throw_expression_token1] = ACTIONS(1006), - [aux_sym_while_statement_token1] = ACTIONS(1006), - [aux_sym_while_statement_token2] = ACTIONS(1006), - [aux_sym_do_statement_token1] = ACTIONS(1006), - [aux_sym_for_statement_token1] = ACTIONS(1006), - [aux_sym_for_statement_token2] = ACTIONS(1006), - [aux_sym_foreach_statement_token1] = ACTIONS(1006), - [aux_sym_foreach_statement_token2] = ACTIONS(1006), - [aux_sym_if_statement_token1] = ACTIONS(1006), - [aux_sym_if_statement_token2] = ACTIONS(1006), - [aux_sym_else_if_clause_token1] = ACTIONS(1006), - [aux_sym_else_clause_token1] = ACTIONS(1006), - [aux_sym_match_expression_token1] = ACTIONS(1006), - [aux_sym_match_default_expression_token1] = ACTIONS(1006), - [aux_sym_switch_statement_token1] = ACTIONS(1006), - [aux_sym_switch_block_token1] = ACTIONS(1006), - [aux_sym_case_statement_token1] = ACTIONS(1006), - [anon_sym_AT] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_clone] = ACTIONS(1006), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_new] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [sym_shell_command_expression] = ACTIONS(1004), - [anon_sym_list] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1004), - [anon_sym_self] = ACTIONS(1006), - [anon_sym_parent] = ACTIONS(1006), - [sym_string] = ACTIONS(1004), - [sym_boolean] = ACTIONS(1006), - [sym_null] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_yield] = ACTIONS(1006), - [aux_sym_include_expression_token1] = ACTIONS(1006), - [aux_sym_include_once_expression_token1] = ACTIONS(1006), - [aux_sym_require_expression_token1] = ACTIONS(1006), - [aux_sym_require_once_expression_token1] = ACTIONS(1006), + [ts_builtin_sym_end] = ACTIONS(1013), + [sym_name] = ACTIONS(1015), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1013), + [aux_sym_function_static_declaration_token1] = ACTIONS(1015), + [aux_sym_global_declaration_token1] = ACTIONS(1015), + [aux_sym_namespace_definition_token1] = ACTIONS(1015), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1015), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1015), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1015), + [anon_sym_BSLASH] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [aux_sym_trait_declaration_token1] = ACTIONS(1015), + [aux_sym_interface_declaration_token1] = ACTIONS(1015), + [aux_sym_class_declaration_token1] = ACTIONS(1015), + [aux_sym_class_modifier_token1] = ACTIONS(1015), + [aux_sym_class_modifier_token2] = ACTIONS(1015), + [aux_sym_visibility_modifier_token1] = ACTIONS(1015), + [aux_sym_visibility_modifier_token2] = ACTIONS(1015), + [aux_sym_visibility_modifier_token3] = ACTIONS(1015), + [aux_sym_arrow_function_token1] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_array] = ACTIONS(1015), + [anon_sym_unset] = ACTIONS(1015), + [aux_sym_echo_statement_token1] = ACTIONS(1015), + [anon_sym_declare] = ACTIONS(1015), + [aux_sym_declare_statement_token1] = ACTIONS(1015), + [sym_float] = ACTIONS(1015), + [aux_sym_try_statement_token1] = ACTIONS(1015), + [aux_sym_goto_statement_token1] = ACTIONS(1015), + [aux_sym_continue_statement_token1] = ACTIONS(1015), + [aux_sym_break_statement_token1] = ACTIONS(1015), + [sym_integer] = ACTIONS(1015), + [aux_sym_return_statement_token1] = ACTIONS(1015), + [aux_sym_throw_expression_token1] = ACTIONS(1015), + [aux_sym_while_statement_token1] = ACTIONS(1015), + [aux_sym_while_statement_token2] = ACTIONS(1015), + [aux_sym_do_statement_token1] = ACTIONS(1015), + [aux_sym_for_statement_token1] = ACTIONS(1015), + [aux_sym_for_statement_token2] = ACTIONS(1015), + [aux_sym_foreach_statement_token1] = ACTIONS(1015), + [aux_sym_foreach_statement_token2] = ACTIONS(1015), + [aux_sym_if_statement_token1] = ACTIONS(1015), + [aux_sym_if_statement_token2] = ACTIONS(1015), + [aux_sym_else_if_clause_token1] = ACTIONS(1015), + [aux_sym_else_clause_token1] = ACTIONS(1015), + [aux_sym_match_expression_token1] = ACTIONS(1015), + [aux_sym_match_default_expression_token1] = ACTIONS(1015), + [aux_sym_switch_statement_token1] = ACTIONS(1015), + [aux_sym_switch_block_token1] = ACTIONS(1015), + [aux_sym_case_statement_token1] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_clone] = ACTIONS(1015), + [anon_sym_print] = ACTIONS(1015), + [anon_sym_new] = ACTIONS(1015), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [sym_shell_command_expression] = ACTIONS(1013), + [anon_sym_list] = ACTIONS(1015), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_self] = ACTIONS(1015), + [anon_sym_parent] = ACTIONS(1015), + [anon_sym_POUND_LBRACK] = ACTIONS(1013), + [sym_string] = ACTIONS(1013), + [sym_boolean] = ACTIONS(1015), + [sym_null] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_yield] = ACTIONS(1015), + [aux_sym_include_expression_token1] = ACTIONS(1015), + [aux_sym_include_once_expression_token1] = ACTIONS(1015), + [aux_sym_require_expression_token1] = ACTIONS(1015), + [aux_sym_require_once_expression_token1] = ACTIONS(1015), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1004), + [sym_heredoc] = ACTIONS(1013), }, [427] = { [sym_text_interpolation] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(1008), - [sym_name] = ACTIONS(1010), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1008), - [aux_sym_function_static_declaration_token1] = ACTIONS(1010), - [aux_sym_global_declaration_token1] = ACTIONS(1010), - [aux_sym_namespace_definition_token1] = ACTIONS(1010), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1010), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1010), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1010), - [anon_sym_BSLASH] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1008), - [aux_sym_trait_declaration_token1] = ACTIONS(1010), - [aux_sym_interface_declaration_token1] = ACTIONS(1010), - [aux_sym_class_declaration_token1] = ACTIONS(1010), - [aux_sym_class_modifier_token1] = ACTIONS(1010), - [aux_sym_class_modifier_token2] = ACTIONS(1010), - [aux_sym_visibility_modifier_token1] = ACTIONS(1010), - [aux_sym_visibility_modifier_token2] = ACTIONS(1010), - [aux_sym_visibility_modifier_token3] = ACTIONS(1010), - [aux_sym_arrow_function_token1] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_array] = ACTIONS(1010), - [anon_sym_unset] = ACTIONS(1010), - [aux_sym_echo_statement_token1] = ACTIONS(1010), - [anon_sym_declare] = ACTIONS(1010), - [aux_sym_declare_statement_token1] = ACTIONS(1010), - [sym_float] = ACTIONS(1010), - [aux_sym_try_statement_token1] = ACTIONS(1010), - [aux_sym_goto_statement_token1] = ACTIONS(1010), - [aux_sym_continue_statement_token1] = ACTIONS(1010), - [aux_sym_break_statement_token1] = ACTIONS(1010), - [sym_integer] = ACTIONS(1010), - [aux_sym_return_statement_token1] = ACTIONS(1010), - [aux_sym_throw_expression_token1] = ACTIONS(1010), - [aux_sym_while_statement_token1] = ACTIONS(1010), - [aux_sym_while_statement_token2] = ACTIONS(1010), - [aux_sym_do_statement_token1] = ACTIONS(1010), - [aux_sym_for_statement_token1] = ACTIONS(1010), - [aux_sym_for_statement_token2] = ACTIONS(1010), - [aux_sym_foreach_statement_token1] = ACTIONS(1010), - [aux_sym_foreach_statement_token2] = ACTIONS(1010), - [aux_sym_if_statement_token1] = ACTIONS(1010), - [aux_sym_if_statement_token2] = ACTIONS(1010), - [aux_sym_else_if_clause_token1] = ACTIONS(1010), - [aux_sym_else_clause_token1] = ACTIONS(1010), - [aux_sym_match_expression_token1] = ACTIONS(1010), - [aux_sym_match_default_expression_token1] = ACTIONS(1010), - [aux_sym_switch_statement_token1] = ACTIONS(1010), - [aux_sym_switch_block_token1] = ACTIONS(1010), - [aux_sym_case_statement_token1] = ACTIONS(1010), - [anon_sym_AT] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1008), - [anon_sym_BANG] = ACTIONS(1008), - [anon_sym_clone] = ACTIONS(1010), - [anon_sym_print] = ACTIONS(1010), - [anon_sym_new] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [sym_shell_command_expression] = ACTIONS(1008), - [anon_sym_list] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1008), - [anon_sym_self] = ACTIONS(1010), - [anon_sym_parent] = ACTIONS(1010), - [sym_string] = ACTIONS(1008), - [sym_boolean] = ACTIONS(1010), - [sym_null] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_yield] = ACTIONS(1010), - [aux_sym_include_expression_token1] = ACTIONS(1010), - [aux_sym_include_once_expression_token1] = ACTIONS(1010), - [aux_sym_require_expression_token1] = ACTIONS(1010), - [aux_sym_require_once_expression_token1] = ACTIONS(1010), + [ts_builtin_sym_end] = ACTIONS(1017), + [sym_name] = ACTIONS(1019), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1017), + [aux_sym_function_static_declaration_token1] = ACTIONS(1019), + [aux_sym_global_declaration_token1] = ACTIONS(1019), + [aux_sym_namespace_definition_token1] = ACTIONS(1019), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1019), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1019), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [aux_sym_trait_declaration_token1] = ACTIONS(1019), + [aux_sym_interface_declaration_token1] = ACTIONS(1019), + [aux_sym_class_declaration_token1] = ACTIONS(1019), + [aux_sym_class_modifier_token1] = ACTIONS(1019), + [aux_sym_class_modifier_token2] = ACTIONS(1019), + [aux_sym_visibility_modifier_token1] = ACTIONS(1019), + [aux_sym_visibility_modifier_token2] = ACTIONS(1019), + [aux_sym_visibility_modifier_token3] = ACTIONS(1019), + [aux_sym_arrow_function_token1] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_array] = ACTIONS(1019), + [anon_sym_unset] = ACTIONS(1019), + [aux_sym_echo_statement_token1] = ACTIONS(1019), + [anon_sym_declare] = ACTIONS(1019), + [aux_sym_declare_statement_token1] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [aux_sym_try_statement_token1] = ACTIONS(1019), + [aux_sym_goto_statement_token1] = ACTIONS(1019), + [aux_sym_continue_statement_token1] = ACTIONS(1019), + [aux_sym_break_statement_token1] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [aux_sym_return_statement_token1] = ACTIONS(1019), + [aux_sym_throw_expression_token1] = ACTIONS(1019), + [aux_sym_while_statement_token1] = ACTIONS(1019), + [aux_sym_while_statement_token2] = ACTIONS(1019), + [aux_sym_do_statement_token1] = ACTIONS(1019), + [aux_sym_for_statement_token1] = ACTIONS(1019), + [aux_sym_for_statement_token2] = ACTIONS(1019), + [aux_sym_foreach_statement_token1] = ACTIONS(1019), + [aux_sym_foreach_statement_token2] = ACTIONS(1019), + [aux_sym_if_statement_token1] = ACTIONS(1019), + [aux_sym_if_statement_token2] = ACTIONS(1019), + [aux_sym_else_if_clause_token1] = ACTIONS(1019), + [aux_sym_else_clause_token1] = ACTIONS(1019), + [aux_sym_match_expression_token1] = ACTIONS(1019), + [aux_sym_match_default_expression_token1] = ACTIONS(1019), + [aux_sym_switch_statement_token1] = ACTIONS(1019), + [aux_sym_switch_block_token1] = ACTIONS(1019), + [aux_sym_case_statement_token1] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_TILDE] = ACTIONS(1017), + [anon_sym_BANG] = ACTIONS(1017), + [anon_sym_clone] = ACTIONS(1019), + [anon_sym_print] = ACTIONS(1019), + [anon_sym_new] = ACTIONS(1019), + [anon_sym_PLUS_PLUS] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1017), + [sym_shell_command_expression] = ACTIONS(1017), + [anon_sym_list] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(1017), + [anon_sym_self] = ACTIONS(1019), + [anon_sym_parent] = ACTIONS(1019), + [anon_sym_POUND_LBRACK] = ACTIONS(1017), + [sym_string] = ACTIONS(1017), + [sym_boolean] = ACTIONS(1019), + [sym_null] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_yield] = ACTIONS(1019), + [aux_sym_include_expression_token1] = ACTIONS(1019), + [aux_sym_include_once_expression_token1] = ACTIONS(1019), + [aux_sym_require_expression_token1] = ACTIONS(1019), + [aux_sym_require_once_expression_token1] = ACTIONS(1019), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1008), + [sym_heredoc] = ACTIONS(1017), }, [428] = { [sym_text_interpolation] = STATE(428), - [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_class_modifier_token1] = ACTIONS(1014), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1021), + [sym_name] = ACTIONS(1023), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1021), + [aux_sym_function_static_declaration_token1] = ACTIONS(1023), + [aux_sym_global_declaration_token1] = ACTIONS(1023), + [aux_sym_namespace_definition_token1] = ACTIONS(1023), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1023), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1023), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1023), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [aux_sym_trait_declaration_token1] = ACTIONS(1023), + [aux_sym_interface_declaration_token1] = ACTIONS(1023), + [aux_sym_class_declaration_token1] = ACTIONS(1023), + [aux_sym_class_modifier_token1] = ACTIONS(1023), + [aux_sym_class_modifier_token2] = ACTIONS(1023), + [aux_sym_visibility_modifier_token1] = ACTIONS(1023), + [aux_sym_visibility_modifier_token2] = ACTIONS(1023), + [aux_sym_visibility_modifier_token3] = ACTIONS(1023), + [aux_sym_arrow_function_token1] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_array] = ACTIONS(1023), + [anon_sym_unset] = ACTIONS(1023), + [aux_sym_echo_statement_token1] = ACTIONS(1023), + [anon_sym_declare] = ACTIONS(1023), + [aux_sym_declare_statement_token1] = ACTIONS(1023), + [sym_float] = ACTIONS(1023), + [aux_sym_try_statement_token1] = ACTIONS(1023), + [aux_sym_goto_statement_token1] = ACTIONS(1023), + [aux_sym_continue_statement_token1] = ACTIONS(1023), + [aux_sym_break_statement_token1] = ACTIONS(1023), + [sym_integer] = ACTIONS(1023), + [aux_sym_return_statement_token1] = ACTIONS(1023), + [aux_sym_throw_expression_token1] = ACTIONS(1023), + [aux_sym_while_statement_token1] = ACTIONS(1023), + [aux_sym_while_statement_token2] = ACTIONS(1023), + [aux_sym_do_statement_token1] = ACTIONS(1023), + [aux_sym_for_statement_token1] = ACTIONS(1023), + [aux_sym_for_statement_token2] = ACTIONS(1023), + [aux_sym_foreach_statement_token1] = ACTIONS(1023), + [aux_sym_foreach_statement_token2] = ACTIONS(1023), + [aux_sym_if_statement_token1] = ACTIONS(1023), + [aux_sym_if_statement_token2] = ACTIONS(1023), + [aux_sym_else_if_clause_token1] = ACTIONS(1023), + [aux_sym_else_clause_token1] = ACTIONS(1023), + [aux_sym_match_expression_token1] = ACTIONS(1023), + [aux_sym_match_default_expression_token1] = ACTIONS(1023), + [aux_sym_switch_statement_token1] = ACTIONS(1023), + [aux_sym_switch_block_token1] = ACTIONS(1023), + [aux_sym_case_statement_token1] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_clone] = ACTIONS(1023), + [anon_sym_print] = ACTIONS(1023), + [anon_sym_new] = ACTIONS(1023), + [anon_sym_PLUS_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1021), + [sym_shell_command_expression] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_self] = ACTIONS(1023), + [anon_sym_parent] = ACTIONS(1023), + [anon_sym_POUND_LBRACK] = ACTIONS(1021), + [sym_string] = ACTIONS(1021), + [sym_boolean] = ACTIONS(1023), + [sym_null] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_yield] = ACTIONS(1023), + [aux_sym_include_expression_token1] = ACTIONS(1023), + [aux_sym_include_once_expression_token1] = ACTIONS(1023), + [aux_sym_require_expression_token1] = ACTIONS(1023), + [aux_sym_require_once_expression_token1] = ACTIONS(1023), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1012), + [sym_heredoc] = ACTIONS(1021), }, [429] = { [sym_text_interpolation] = STATE(429), - [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_class_modifier_token1] = ACTIONS(1018), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1025), + [sym_name] = ACTIONS(1027), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1025), + [aux_sym_function_static_declaration_token1] = ACTIONS(1027), + [aux_sym_global_declaration_token1] = ACTIONS(1027), + [aux_sym_namespace_definition_token1] = ACTIONS(1027), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1027), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1027), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1027), + [anon_sym_BSLASH] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [aux_sym_trait_declaration_token1] = ACTIONS(1027), + [aux_sym_interface_declaration_token1] = ACTIONS(1027), + [aux_sym_class_declaration_token1] = ACTIONS(1027), + [aux_sym_class_modifier_token1] = ACTIONS(1027), + [aux_sym_class_modifier_token2] = ACTIONS(1027), + [aux_sym_visibility_modifier_token1] = ACTIONS(1027), + [aux_sym_visibility_modifier_token2] = ACTIONS(1027), + [aux_sym_visibility_modifier_token3] = ACTIONS(1027), + [aux_sym_arrow_function_token1] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1025), + [anon_sym_array] = ACTIONS(1027), + [anon_sym_unset] = ACTIONS(1027), + [aux_sym_echo_statement_token1] = ACTIONS(1027), + [anon_sym_declare] = ACTIONS(1027), + [aux_sym_declare_statement_token1] = ACTIONS(1027), + [sym_float] = ACTIONS(1027), + [aux_sym_try_statement_token1] = ACTIONS(1027), + [aux_sym_goto_statement_token1] = ACTIONS(1027), + [aux_sym_continue_statement_token1] = ACTIONS(1027), + [aux_sym_break_statement_token1] = ACTIONS(1027), + [sym_integer] = ACTIONS(1027), + [aux_sym_return_statement_token1] = ACTIONS(1027), + [aux_sym_throw_expression_token1] = ACTIONS(1027), + [aux_sym_while_statement_token1] = ACTIONS(1027), + [aux_sym_while_statement_token2] = ACTIONS(1027), + [aux_sym_do_statement_token1] = ACTIONS(1027), + [aux_sym_for_statement_token1] = ACTIONS(1027), + [aux_sym_for_statement_token2] = ACTIONS(1027), + [aux_sym_foreach_statement_token1] = ACTIONS(1027), + [aux_sym_foreach_statement_token2] = ACTIONS(1027), + [aux_sym_if_statement_token1] = ACTIONS(1027), + [aux_sym_if_statement_token2] = ACTIONS(1027), + [aux_sym_else_if_clause_token1] = ACTIONS(1027), + [aux_sym_else_clause_token1] = ACTIONS(1027), + [aux_sym_match_expression_token1] = ACTIONS(1027), + [aux_sym_match_default_expression_token1] = ACTIONS(1027), + [aux_sym_switch_statement_token1] = ACTIONS(1027), + [aux_sym_switch_block_token1] = ACTIONS(1027), + [aux_sym_case_statement_token1] = ACTIONS(1027), + [anon_sym_AT] = ACTIONS(1025), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_TILDE] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_clone] = ACTIONS(1027), + [anon_sym_print] = ACTIONS(1027), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [sym_shell_command_expression] = ACTIONS(1025), + [anon_sym_list] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1025), + [anon_sym_self] = ACTIONS(1027), + [anon_sym_parent] = ACTIONS(1027), + [anon_sym_POUND_LBRACK] = ACTIONS(1025), + [sym_string] = ACTIONS(1025), + [sym_boolean] = ACTIONS(1027), + [sym_null] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1025), + [anon_sym_yield] = ACTIONS(1027), + [aux_sym_include_expression_token1] = ACTIONS(1027), + [aux_sym_include_once_expression_token1] = ACTIONS(1027), + [aux_sym_require_expression_token1] = ACTIONS(1027), + [aux_sym_require_once_expression_token1] = ACTIONS(1027), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1016), + [sym_heredoc] = ACTIONS(1025), }, [430] = { [sym_text_interpolation] = STATE(430), - [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_class_modifier_token1] = ACTIONS(1022), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1029), + [sym_name] = ACTIONS(1031), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1029), + [aux_sym_function_static_declaration_token1] = ACTIONS(1031), + [aux_sym_global_declaration_token1] = ACTIONS(1031), + [aux_sym_namespace_definition_token1] = ACTIONS(1031), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1031), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1031), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1031), + [anon_sym_BSLASH] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [aux_sym_trait_declaration_token1] = ACTIONS(1031), + [aux_sym_interface_declaration_token1] = ACTIONS(1031), + [aux_sym_class_declaration_token1] = ACTIONS(1031), + [aux_sym_class_modifier_token1] = ACTIONS(1031), + [aux_sym_class_modifier_token2] = ACTIONS(1031), + [aux_sym_visibility_modifier_token1] = ACTIONS(1031), + [aux_sym_visibility_modifier_token2] = ACTIONS(1031), + [aux_sym_visibility_modifier_token3] = ACTIONS(1031), + [aux_sym_arrow_function_token1] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_array] = ACTIONS(1031), + [anon_sym_unset] = ACTIONS(1031), + [aux_sym_echo_statement_token1] = ACTIONS(1031), + [anon_sym_declare] = ACTIONS(1031), + [aux_sym_declare_statement_token1] = ACTIONS(1031), + [sym_float] = ACTIONS(1031), + [aux_sym_try_statement_token1] = ACTIONS(1031), + [aux_sym_goto_statement_token1] = ACTIONS(1031), + [aux_sym_continue_statement_token1] = ACTIONS(1031), + [aux_sym_break_statement_token1] = ACTIONS(1031), + [sym_integer] = ACTIONS(1031), + [aux_sym_return_statement_token1] = ACTIONS(1031), + [aux_sym_throw_expression_token1] = ACTIONS(1031), + [aux_sym_while_statement_token1] = ACTIONS(1031), + [aux_sym_while_statement_token2] = ACTIONS(1031), + [aux_sym_do_statement_token1] = ACTIONS(1031), + [aux_sym_for_statement_token1] = ACTIONS(1031), + [aux_sym_for_statement_token2] = ACTIONS(1031), + [aux_sym_foreach_statement_token1] = ACTIONS(1031), + [aux_sym_foreach_statement_token2] = ACTIONS(1031), + [aux_sym_if_statement_token1] = ACTIONS(1031), + [aux_sym_if_statement_token2] = ACTIONS(1031), + [aux_sym_else_if_clause_token1] = ACTIONS(1031), + [aux_sym_else_clause_token1] = ACTIONS(1031), + [aux_sym_match_expression_token1] = ACTIONS(1031), + [aux_sym_match_default_expression_token1] = ACTIONS(1031), + [aux_sym_switch_statement_token1] = ACTIONS(1031), + [aux_sym_switch_block_token1] = ACTIONS(1031), + [aux_sym_case_statement_token1] = ACTIONS(1031), + [anon_sym_AT] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_clone] = ACTIONS(1031), + [anon_sym_print] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1031), + [anon_sym_PLUS_PLUS] = ACTIONS(1029), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [sym_shell_command_expression] = ACTIONS(1029), + [anon_sym_list] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_self] = ACTIONS(1031), + [anon_sym_parent] = ACTIONS(1031), + [anon_sym_POUND_LBRACK] = ACTIONS(1029), + [sym_string] = ACTIONS(1029), + [sym_boolean] = ACTIONS(1031), + [sym_null] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [aux_sym_include_expression_token1] = ACTIONS(1031), + [aux_sym_include_once_expression_token1] = ACTIONS(1031), + [aux_sym_require_expression_token1] = ACTIONS(1031), + [aux_sym_require_once_expression_token1] = ACTIONS(1031), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1020), + [sym_heredoc] = ACTIONS(1029), }, [431] = { [sym_text_interpolation] = STATE(431), - [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_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), - [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(1033), + [sym_name] = ACTIONS(1035), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1033), + [aux_sym_function_static_declaration_token1] = ACTIONS(1035), + [aux_sym_global_declaration_token1] = ACTIONS(1035), + [aux_sym_namespace_definition_token1] = ACTIONS(1035), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1035), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1035), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1035), + [anon_sym_BSLASH] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [aux_sym_trait_declaration_token1] = ACTIONS(1035), + [aux_sym_interface_declaration_token1] = ACTIONS(1035), + [aux_sym_class_declaration_token1] = ACTIONS(1035), + [aux_sym_class_modifier_token1] = ACTIONS(1035), + [aux_sym_class_modifier_token2] = ACTIONS(1035), + [aux_sym_visibility_modifier_token1] = ACTIONS(1035), + [aux_sym_visibility_modifier_token2] = ACTIONS(1035), + [aux_sym_visibility_modifier_token3] = ACTIONS(1035), + [aux_sym_arrow_function_token1] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_array] = ACTIONS(1035), + [anon_sym_unset] = ACTIONS(1035), + [aux_sym_echo_statement_token1] = ACTIONS(1035), + [anon_sym_declare] = ACTIONS(1035), + [aux_sym_declare_statement_token1] = ACTIONS(1035), + [sym_float] = ACTIONS(1035), + [aux_sym_try_statement_token1] = ACTIONS(1035), + [aux_sym_goto_statement_token1] = ACTIONS(1035), + [aux_sym_continue_statement_token1] = ACTIONS(1035), + [aux_sym_break_statement_token1] = ACTIONS(1035), + [sym_integer] = ACTIONS(1035), + [aux_sym_return_statement_token1] = ACTIONS(1035), + [aux_sym_throw_expression_token1] = ACTIONS(1035), + [aux_sym_while_statement_token1] = ACTIONS(1035), + [aux_sym_while_statement_token2] = ACTIONS(1035), + [aux_sym_do_statement_token1] = ACTIONS(1035), + [aux_sym_for_statement_token1] = ACTIONS(1035), + [aux_sym_for_statement_token2] = ACTIONS(1035), + [aux_sym_foreach_statement_token1] = ACTIONS(1035), + [aux_sym_foreach_statement_token2] = ACTIONS(1035), + [aux_sym_if_statement_token1] = ACTIONS(1035), + [aux_sym_if_statement_token2] = ACTIONS(1035), + [aux_sym_else_if_clause_token1] = ACTIONS(1035), + [aux_sym_else_clause_token1] = ACTIONS(1035), + [aux_sym_match_expression_token1] = ACTIONS(1035), + [aux_sym_match_default_expression_token1] = ACTIONS(1035), + [aux_sym_switch_statement_token1] = ACTIONS(1035), + [aux_sym_switch_block_token1] = ACTIONS(1035), + [aux_sym_case_statement_token1] = ACTIONS(1035), + [anon_sym_AT] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_clone] = ACTIONS(1035), + [anon_sym_print] = ACTIONS(1035), + [anon_sym_new] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1033), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [sym_shell_command_expression] = ACTIONS(1033), + [anon_sym_list] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_self] = ACTIONS(1035), + [anon_sym_parent] = ACTIONS(1035), + [anon_sym_POUND_LBRACK] = ACTIONS(1033), + [sym_string] = ACTIONS(1033), + [sym_boolean] = ACTIONS(1035), + [sym_null] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_yield] = ACTIONS(1035), + [aux_sym_include_expression_token1] = ACTIONS(1035), + [aux_sym_include_once_expression_token1] = ACTIONS(1035), + [aux_sym_require_expression_token1] = ACTIONS(1035), + [aux_sym_require_once_expression_token1] = ACTIONS(1035), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(916), + [sym_heredoc] = ACTIONS(1033), }, [432] = { [sym_text_interpolation] = STATE(432), - [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_class_modifier_token1] = ACTIONS(1022), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_name] = ACTIONS(1039), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1037), + [aux_sym_function_static_declaration_token1] = ACTIONS(1039), + [aux_sym_global_declaration_token1] = ACTIONS(1039), + [aux_sym_namespace_definition_token1] = ACTIONS(1039), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1039), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1039), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1039), + [anon_sym_BSLASH] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [aux_sym_trait_declaration_token1] = ACTIONS(1039), + [aux_sym_interface_declaration_token1] = ACTIONS(1039), + [aux_sym_class_declaration_token1] = ACTIONS(1039), + [aux_sym_class_modifier_token1] = ACTIONS(1039), + [aux_sym_class_modifier_token2] = ACTIONS(1039), + [aux_sym_visibility_modifier_token1] = ACTIONS(1039), + [aux_sym_visibility_modifier_token2] = ACTIONS(1039), + [aux_sym_visibility_modifier_token3] = ACTIONS(1039), + [aux_sym_arrow_function_token1] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_array] = ACTIONS(1039), + [anon_sym_unset] = ACTIONS(1039), + [aux_sym_echo_statement_token1] = ACTIONS(1039), + [anon_sym_declare] = ACTIONS(1039), + [aux_sym_declare_statement_token1] = ACTIONS(1039), + [sym_float] = ACTIONS(1039), + [aux_sym_try_statement_token1] = ACTIONS(1039), + [aux_sym_goto_statement_token1] = ACTIONS(1039), + [aux_sym_continue_statement_token1] = ACTIONS(1039), + [aux_sym_break_statement_token1] = ACTIONS(1039), + [sym_integer] = ACTIONS(1039), + [aux_sym_return_statement_token1] = ACTIONS(1039), + [aux_sym_throw_expression_token1] = ACTIONS(1039), + [aux_sym_while_statement_token1] = ACTIONS(1039), + [aux_sym_while_statement_token2] = ACTIONS(1039), + [aux_sym_do_statement_token1] = ACTIONS(1039), + [aux_sym_for_statement_token1] = ACTIONS(1039), + [aux_sym_for_statement_token2] = ACTIONS(1039), + [aux_sym_foreach_statement_token1] = ACTIONS(1039), + [aux_sym_foreach_statement_token2] = ACTIONS(1039), + [aux_sym_if_statement_token1] = ACTIONS(1039), + [aux_sym_if_statement_token2] = ACTIONS(1039), + [aux_sym_else_if_clause_token1] = ACTIONS(1039), + [aux_sym_else_clause_token1] = ACTIONS(1039), + [aux_sym_match_expression_token1] = ACTIONS(1039), + [aux_sym_match_default_expression_token1] = ACTIONS(1039), + [aux_sym_switch_statement_token1] = ACTIONS(1039), + [aux_sym_switch_block_token1] = ACTIONS(1039), + [aux_sym_case_statement_token1] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_clone] = ACTIONS(1039), + [anon_sym_print] = ACTIONS(1039), + [anon_sym_new] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [sym_shell_command_expression] = ACTIONS(1037), + [anon_sym_list] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_self] = ACTIONS(1039), + [anon_sym_parent] = ACTIONS(1039), + [anon_sym_POUND_LBRACK] = ACTIONS(1037), + [sym_string] = ACTIONS(1037), + [sym_boolean] = ACTIONS(1039), + [sym_null] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_yield] = ACTIONS(1039), + [aux_sym_include_expression_token1] = ACTIONS(1039), + [aux_sym_include_once_expression_token1] = ACTIONS(1039), + [aux_sym_require_expression_token1] = ACTIONS(1039), + [aux_sym_require_once_expression_token1] = ACTIONS(1039), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1020), + [sym_heredoc] = ACTIONS(1037), }, [433] = { [sym_text_interpolation] = STATE(433), - [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_class_modifier_token1] = ACTIONS(1026), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1041), + [sym_name] = ACTIONS(1043), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1041), + [aux_sym_function_static_declaration_token1] = ACTIONS(1043), + [aux_sym_global_declaration_token1] = ACTIONS(1043), + [aux_sym_namespace_definition_token1] = ACTIONS(1043), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1043), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1043), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1043), + [anon_sym_BSLASH] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [aux_sym_trait_declaration_token1] = ACTIONS(1043), + [aux_sym_interface_declaration_token1] = ACTIONS(1043), + [aux_sym_class_declaration_token1] = ACTIONS(1043), + [aux_sym_class_modifier_token1] = ACTIONS(1043), + [aux_sym_class_modifier_token2] = ACTIONS(1043), + [aux_sym_visibility_modifier_token1] = ACTIONS(1043), + [aux_sym_visibility_modifier_token2] = ACTIONS(1043), + [aux_sym_visibility_modifier_token3] = ACTIONS(1043), + [aux_sym_arrow_function_token1] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_array] = ACTIONS(1043), + [anon_sym_unset] = ACTIONS(1043), + [aux_sym_echo_statement_token1] = ACTIONS(1043), + [anon_sym_declare] = ACTIONS(1043), + [aux_sym_declare_statement_token1] = ACTIONS(1043), + [sym_float] = ACTIONS(1043), + [aux_sym_try_statement_token1] = ACTIONS(1043), + [aux_sym_goto_statement_token1] = ACTIONS(1043), + [aux_sym_continue_statement_token1] = ACTIONS(1043), + [aux_sym_break_statement_token1] = ACTIONS(1043), + [sym_integer] = ACTIONS(1043), + [aux_sym_return_statement_token1] = ACTIONS(1043), + [aux_sym_throw_expression_token1] = ACTIONS(1043), + [aux_sym_while_statement_token1] = ACTIONS(1043), + [aux_sym_while_statement_token2] = ACTIONS(1043), + [aux_sym_do_statement_token1] = ACTIONS(1043), + [aux_sym_for_statement_token1] = ACTIONS(1043), + [aux_sym_for_statement_token2] = ACTIONS(1043), + [aux_sym_foreach_statement_token1] = ACTIONS(1043), + [aux_sym_foreach_statement_token2] = ACTIONS(1043), + [aux_sym_if_statement_token1] = ACTIONS(1043), + [aux_sym_if_statement_token2] = ACTIONS(1043), + [aux_sym_else_if_clause_token1] = ACTIONS(1043), + [aux_sym_else_clause_token1] = ACTIONS(1043), + [aux_sym_match_expression_token1] = ACTIONS(1043), + [aux_sym_match_default_expression_token1] = ACTIONS(1043), + [aux_sym_switch_statement_token1] = ACTIONS(1043), + [aux_sym_switch_block_token1] = ACTIONS(1043), + [aux_sym_case_statement_token1] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1043), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_clone] = ACTIONS(1043), + [anon_sym_print] = ACTIONS(1043), + [anon_sym_new] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1041), + [anon_sym_DASH_DASH] = ACTIONS(1041), + [sym_shell_command_expression] = ACTIONS(1041), + [anon_sym_list] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_parent] = ACTIONS(1043), + [anon_sym_POUND_LBRACK] = ACTIONS(1041), + [sym_string] = ACTIONS(1041), + [sym_boolean] = ACTIONS(1043), + [sym_null] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_yield] = ACTIONS(1043), + [aux_sym_include_expression_token1] = ACTIONS(1043), + [aux_sym_include_once_expression_token1] = ACTIONS(1043), + [aux_sym_require_expression_token1] = ACTIONS(1043), + [aux_sym_require_once_expression_token1] = ACTIONS(1043), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1024), + [sym_heredoc] = ACTIONS(1041), }, [434] = { [sym_text_interpolation] = STATE(434), - [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_class_modifier_token1] = ACTIONS(1030), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1045), + [sym_name] = ACTIONS(1047), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1045), + [aux_sym_function_static_declaration_token1] = ACTIONS(1047), + [aux_sym_global_declaration_token1] = ACTIONS(1047), + [aux_sym_namespace_definition_token1] = ACTIONS(1047), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1047), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1047), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1047), + [anon_sym_BSLASH] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1045), + [aux_sym_trait_declaration_token1] = ACTIONS(1047), + [aux_sym_interface_declaration_token1] = ACTIONS(1047), + [aux_sym_class_declaration_token1] = ACTIONS(1047), + [aux_sym_class_modifier_token1] = ACTIONS(1047), + [aux_sym_class_modifier_token2] = ACTIONS(1047), + [aux_sym_visibility_modifier_token1] = ACTIONS(1047), + [aux_sym_visibility_modifier_token2] = ACTIONS(1047), + [aux_sym_visibility_modifier_token3] = ACTIONS(1047), + [aux_sym_arrow_function_token1] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_array] = ACTIONS(1047), + [anon_sym_unset] = ACTIONS(1047), + [aux_sym_echo_statement_token1] = ACTIONS(1047), + [anon_sym_declare] = ACTIONS(1047), + [aux_sym_declare_statement_token1] = ACTIONS(1047), + [sym_float] = ACTIONS(1047), + [aux_sym_try_statement_token1] = ACTIONS(1047), + [aux_sym_goto_statement_token1] = ACTIONS(1047), + [aux_sym_continue_statement_token1] = ACTIONS(1047), + [aux_sym_break_statement_token1] = ACTIONS(1047), + [sym_integer] = ACTIONS(1047), + [aux_sym_return_statement_token1] = ACTIONS(1047), + [aux_sym_throw_expression_token1] = ACTIONS(1047), + [aux_sym_while_statement_token1] = ACTIONS(1047), + [aux_sym_while_statement_token2] = ACTIONS(1047), + [aux_sym_do_statement_token1] = ACTIONS(1047), + [aux_sym_for_statement_token1] = ACTIONS(1047), + [aux_sym_for_statement_token2] = ACTIONS(1047), + [aux_sym_foreach_statement_token1] = ACTIONS(1047), + [aux_sym_foreach_statement_token2] = ACTIONS(1047), + [aux_sym_if_statement_token1] = ACTIONS(1047), + [aux_sym_if_statement_token2] = ACTIONS(1047), + [aux_sym_else_if_clause_token1] = ACTIONS(1047), + [aux_sym_else_clause_token1] = ACTIONS(1047), + [aux_sym_match_expression_token1] = ACTIONS(1047), + [aux_sym_match_default_expression_token1] = ACTIONS(1047), + [aux_sym_switch_statement_token1] = ACTIONS(1047), + [aux_sym_switch_block_token1] = ACTIONS(1047), + [aux_sym_case_statement_token1] = ACTIONS(1047), + [anon_sym_AT] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_clone] = ACTIONS(1047), + [anon_sym_print] = ACTIONS(1047), + [anon_sym_new] = ACTIONS(1047), + [anon_sym_PLUS_PLUS] = ACTIONS(1045), + [anon_sym_DASH_DASH] = ACTIONS(1045), + [sym_shell_command_expression] = ACTIONS(1045), + [anon_sym_list] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_self] = ACTIONS(1047), + [anon_sym_parent] = ACTIONS(1047), + [anon_sym_POUND_LBRACK] = ACTIONS(1045), + [sym_string] = ACTIONS(1045), + [sym_boolean] = ACTIONS(1047), + [sym_null] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1047), + [aux_sym_include_expression_token1] = ACTIONS(1047), + [aux_sym_include_once_expression_token1] = ACTIONS(1047), + [aux_sym_require_expression_token1] = ACTIONS(1047), + [aux_sym_require_once_expression_token1] = ACTIONS(1047), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1028), + [sym_heredoc] = ACTIONS(1045), }, [435] = { [sym_text_interpolation] = STATE(435), - [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_class_modifier_token1] = ACTIONS(1034), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1049), + [sym_name] = ACTIONS(1051), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1049), + [aux_sym_function_static_declaration_token1] = ACTIONS(1051), + [aux_sym_global_declaration_token1] = ACTIONS(1051), + [aux_sym_namespace_definition_token1] = ACTIONS(1051), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1051), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1051), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1051), + [anon_sym_BSLASH] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [aux_sym_trait_declaration_token1] = ACTIONS(1051), + [aux_sym_interface_declaration_token1] = ACTIONS(1051), + [aux_sym_class_declaration_token1] = ACTIONS(1051), + [aux_sym_class_modifier_token1] = ACTIONS(1051), + [aux_sym_class_modifier_token2] = ACTIONS(1051), + [aux_sym_visibility_modifier_token1] = ACTIONS(1051), + [aux_sym_visibility_modifier_token2] = ACTIONS(1051), + [aux_sym_visibility_modifier_token3] = ACTIONS(1051), + [aux_sym_arrow_function_token1] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_array] = ACTIONS(1051), + [anon_sym_unset] = ACTIONS(1051), + [aux_sym_echo_statement_token1] = ACTIONS(1051), + [anon_sym_declare] = ACTIONS(1051), + [aux_sym_declare_statement_token1] = ACTIONS(1051), + [sym_float] = ACTIONS(1051), + [aux_sym_try_statement_token1] = ACTIONS(1051), + [aux_sym_goto_statement_token1] = ACTIONS(1051), + [aux_sym_continue_statement_token1] = ACTIONS(1051), + [aux_sym_break_statement_token1] = ACTIONS(1051), + [sym_integer] = ACTIONS(1051), + [aux_sym_return_statement_token1] = ACTIONS(1051), + [aux_sym_throw_expression_token1] = ACTIONS(1051), + [aux_sym_while_statement_token1] = ACTIONS(1051), + [aux_sym_while_statement_token2] = ACTIONS(1051), + [aux_sym_do_statement_token1] = ACTIONS(1051), + [aux_sym_for_statement_token1] = ACTIONS(1051), + [aux_sym_for_statement_token2] = ACTIONS(1051), + [aux_sym_foreach_statement_token1] = ACTIONS(1051), + [aux_sym_foreach_statement_token2] = ACTIONS(1051), + [aux_sym_if_statement_token1] = ACTIONS(1051), + [aux_sym_if_statement_token2] = ACTIONS(1051), + [aux_sym_else_if_clause_token1] = ACTIONS(1051), + [aux_sym_else_clause_token1] = ACTIONS(1051), + [aux_sym_match_expression_token1] = ACTIONS(1051), + [aux_sym_match_default_expression_token1] = ACTIONS(1051), + [aux_sym_switch_statement_token1] = ACTIONS(1051), + [aux_sym_switch_block_token1] = ACTIONS(1051), + [aux_sym_case_statement_token1] = ACTIONS(1051), + [anon_sym_AT] = ACTIONS(1049), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_clone] = ACTIONS(1051), + [anon_sym_print] = ACTIONS(1051), + [anon_sym_new] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [sym_shell_command_expression] = ACTIONS(1049), + [anon_sym_list] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_self] = ACTIONS(1051), + [anon_sym_parent] = ACTIONS(1051), + [anon_sym_POUND_LBRACK] = ACTIONS(1049), + [sym_string] = ACTIONS(1049), + [sym_boolean] = ACTIONS(1051), + [sym_null] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1051), + [aux_sym_include_expression_token1] = ACTIONS(1051), + [aux_sym_include_once_expression_token1] = ACTIONS(1051), + [aux_sym_require_expression_token1] = ACTIONS(1051), + [aux_sym_require_once_expression_token1] = ACTIONS(1051), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1032), + [sym_heredoc] = ACTIONS(1049), }, [436] = { [sym_text_interpolation] = STATE(436), - [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_class_modifier_token1] = ACTIONS(1034), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1053), + [sym_name] = ACTIONS(1055), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1053), + [aux_sym_function_static_declaration_token1] = ACTIONS(1055), + [aux_sym_global_declaration_token1] = ACTIONS(1055), + [aux_sym_namespace_definition_token1] = ACTIONS(1055), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1055), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1055), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1055), + [anon_sym_BSLASH] = ACTIONS(1053), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1053), + [aux_sym_trait_declaration_token1] = ACTIONS(1055), + [aux_sym_interface_declaration_token1] = ACTIONS(1055), + [aux_sym_class_declaration_token1] = ACTIONS(1055), + [aux_sym_class_modifier_token1] = ACTIONS(1055), + [aux_sym_class_modifier_token2] = ACTIONS(1055), + [aux_sym_visibility_modifier_token1] = ACTIONS(1055), + [aux_sym_visibility_modifier_token2] = ACTIONS(1055), + [aux_sym_visibility_modifier_token3] = ACTIONS(1055), + [aux_sym_arrow_function_token1] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_array] = ACTIONS(1055), + [anon_sym_unset] = ACTIONS(1055), + [aux_sym_echo_statement_token1] = ACTIONS(1055), + [anon_sym_declare] = ACTIONS(1055), + [aux_sym_declare_statement_token1] = ACTIONS(1055), + [sym_float] = ACTIONS(1055), + [aux_sym_try_statement_token1] = ACTIONS(1055), + [aux_sym_goto_statement_token1] = ACTIONS(1055), + [aux_sym_continue_statement_token1] = ACTIONS(1055), + [aux_sym_break_statement_token1] = ACTIONS(1055), + [sym_integer] = ACTIONS(1055), + [aux_sym_return_statement_token1] = ACTIONS(1055), + [aux_sym_throw_expression_token1] = ACTIONS(1055), + [aux_sym_while_statement_token1] = ACTIONS(1055), + [aux_sym_while_statement_token2] = ACTIONS(1055), + [aux_sym_do_statement_token1] = ACTIONS(1055), + [aux_sym_for_statement_token1] = ACTIONS(1055), + [aux_sym_for_statement_token2] = ACTIONS(1055), + [aux_sym_foreach_statement_token1] = ACTIONS(1055), + [aux_sym_foreach_statement_token2] = ACTIONS(1055), + [aux_sym_if_statement_token1] = ACTIONS(1055), + [aux_sym_if_statement_token2] = ACTIONS(1055), + [aux_sym_else_if_clause_token1] = ACTIONS(1055), + [aux_sym_else_clause_token1] = ACTIONS(1055), + [aux_sym_match_expression_token1] = ACTIONS(1055), + [aux_sym_match_default_expression_token1] = ACTIONS(1055), + [aux_sym_switch_statement_token1] = ACTIONS(1055), + [aux_sym_switch_block_token1] = ACTIONS(1055), + [aux_sym_case_statement_token1] = ACTIONS(1055), + [anon_sym_AT] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_TILDE] = ACTIONS(1053), + [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_clone] = ACTIONS(1055), + [anon_sym_print] = ACTIONS(1055), + [anon_sym_new] = ACTIONS(1055), + [anon_sym_PLUS_PLUS] = ACTIONS(1053), + [anon_sym_DASH_DASH] = ACTIONS(1053), + [sym_shell_command_expression] = ACTIONS(1053), + [anon_sym_list] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_self] = ACTIONS(1055), + [anon_sym_parent] = ACTIONS(1055), + [anon_sym_POUND_LBRACK] = ACTIONS(1053), + [sym_string] = ACTIONS(1053), + [sym_boolean] = ACTIONS(1055), + [sym_null] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_yield] = ACTIONS(1055), + [aux_sym_include_expression_token1] = ACTIONS(1055), + [aux_sym_include_once_expression_token1] = ACTIONS(1055), + [aux_sym_require_expression_token1] = ACTIONS(1055), + [aux_sym_require_once_expression_token1] = ACTIONS(1055), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1032), + [sym_heredoc] = ACTIONS(1053), }, [437] = { [sym_text_interpolation] = STATE(437), - [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_class_modifier_token1] = ACTIONS(1038), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_name] = ACTIONS(1059), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1057), + [aux_sym_function_static_declaration_token1] = ACTIONS(1059), + [aux_sym_global_declaration_token1] = ACTIONS(1059), + [aux_sym_namespace_definition_token1] = ACTIONS(1059), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1059), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1059), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1059), + [anon_sym_BSLASH] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1057), + [aux_sym_trait_declaration_token1] = ACTIONS(1059), + [aux_sym_interface_declaration_token1] = ACTIONS(1059), + [aux_sym_class_declaration_token1] = ACTIONS(1059), + [aux_sym_class_modifier_token1] = ACTIONS(1059), + [aux_sym_class_modifier_token2] = ACTIONS(1059), + [aux_sym_visibility_modifier_token1] = ACTIONS(1059), + [aux_sym_visibility_modifier_token2] = ACTIONS(1059), + [aux_sym_visibility_modifier_token3] = ACTIONS(1059), + [aux_sym_arrow_function_token1] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_array] = ACTIONS(1059), + [anon_sym_unset] = ACTIONS(1059), + [aux_sym_echo_statement_token1] = ACTIONS(1059), + [anon_sym_declare] = ACTIONS(1059), + [aux_sym_declare_statement_token1] = ACTIONS(1059), + [sym_float] = ACTIONS(1059), + [aux_sym_try_statement_token1] = ACTIONS(1059), + [aux_sym_goto_statement_token1] = ACTIONS(1059), + [aux_sym_continue_statement_token1] = ACTIONS(1059), + [aux_sym_break_statement_token1] = ACTIONS(1059), + [sym_integer] = ACTIONS(1059), + [aux_sym_return_statement_token1] = ACTIONS(1059), + [aux_sym_throw_expression_token1] = ACTIONS(1059), + [aux_sym_while_statement_token1] = ACTIONS(1059), + [aux_sym_while_statement_token2] = ACTIONS(1059), + [aux_sym_do_statement_token1] = ACTIONS(1059), + [aux_sym_for_statement_token1] = ACTIONS(1059), + [aux_sym_for_statement_token2] = ACTIONS(1059), + [aux_sym_foreach_statement_token1] = ACTIONS(1059), + [aux_sym_foreach_statement_token2] = ACTIONS(1059), + [aux_sym_if_statement_token1] = ACTIONS(1059), + [aux_sym_if_statement_token2] = ACTIONS(1059), + [aux_sym_else_if_clause_token1] = ACTIONS(1059), + [aux_sym_else_clause_token1] = ACTIONS(1059), + [aux_sym_match_expression_token1] = ACTIONS(1059), + [aux_sym_match_default_expression_token1] = ACTIONS(1059), + [aux_sym_switch_statement_token1] = ACTIONS(1059), + [aux_sym_switch_block_token1] = ACTIONS(1059), + [aux_sym_case_statement_token1] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1057), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_clone] = ACTIONS(1059), + [anon_sym_print] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1059), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [sym_shell_command_expression] = ACTIONS(1057), + [anon_sym_list] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_self] = ACTIONS(1059), + [anon_sym_parent] = ACTIONS(1059), + [anon_sym_POUND_LBRACK] = ACTIONS(1057), + [sym_string] = ACTIONS(1057), + [sym_boolean] = ACTIONS(1059), + [sym_null] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_yield] = ACTIONS(1059), + [aux_sym_include_expression_token1] = ACTIONS(1059), + [aux_sym_include_once_expression_token1] = ACTIONS(1059), + [aux_sym_require_expression_token1] = ACTIONS(1059), + [aux_sym_require_once_expression_token1] = ACTIONS(1059), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1036), + [sym_heredoc] = ACTIONS(1057), }, [438] = { [sym_text_interpolation] = STATE(438), - [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_class_modifier_token1] = ACTIONS(1042), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1061), + [sym_name] = ACTIONS(1063), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1061), + [aux_sym_function_static_declaration_token1] = ACTIONS(1063), + [aux_sym_global_declaration_token1] = ACTIONS(1063), + [aux_sym_namespace_definition_token1] = ACTIONS(1063), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1063), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1063), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1063), + [anon_sym_BSLASH] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [aux_sym_trait_declaration_token1] = ACTIONS(1063), + [aux_sym_interface_declaration_token1] = ACTIONS(1063), + [aux_sym_class_declaration_token1] = ACTIONS(1063), + [aux_sym_class_modifier_token1] = ACTIONS(1063), + [aux_sym_class_modifier_token2] = ACTIONS(1063), + [aux_sym_visibility_modifier_token1] = ACTIONS(1063), + [aux_sym_visibility_modifier_token2] = ACTIONS(1063), + [aux_sym_visibility_modifier_token3] = ACTIONS(1063), + [aux_sym_arrow_function_token1] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_array] = ACTIONS(1063), + [anon_sym_unset] = ACTIONS(1063), + [aux_sym_echo_statement_token1] = ACTIONS(1063), + [anon_sym_declare] = ACTIONS(1063), + [aux_sym_declare_statement_token1] = ACTIONS(1063), + [sym_float] = ACTIONS(1063), + [aux_sym_try_statement_token1] = ACTIONS(1063), + [aux_sym_goto_statement_token1] = ACTIONS(1063), + [aux_sym_continue_statement_token1] = ACTIONS(1063), + [aux_sym_break_statement_token1] = ACTIONS(1063), + [sym_integer] = ACTIONS(1063), + [aux_sym_return_statement_token1] = ACTIONS(1063), + [aux_sym_throw_expression_token1] = ACTIONS(1063), + [aux_sym_while_statement_token1] = ACTIONS(1063), + [aux_sym_while_statement_token2] = ACTIONS(1063), + [aux_sym_do_statement_token1] = ACTIONS(1063), + [aux_sym_for_statement_token1] = ACTIONS(1063), + [aux_sym_for_statement_token2] = ACTIONS(1063), + [aux_sym_foreach_statement_token1] = ACTIONS(1063), + [aux_sym_foreach_statement_token2] = ACTIONS(1063), + [aux_sym_if_statement_token1] = ACTIONS(1063), + [aux_sym_if_statement_token2] = ACTIONS(1063), + [aux_sym_else_if_clause_token1] = ACTIONS(1063), + [aux_sym_else_clause_token1] = ACTIONS(1063), + [aux_sym_match_expression_token1] = ACTIONS(1063), + [aux_sym_match_default_expression_token1] = ACTIONS(1063), + [aux_sym_switch_statement_token1] = ACTIONS(1063), + [aux_sym_switch_block_token1] = ACTIONS(1063), + [aux_sym_case_statement_token1] = ACTIONS(1063), + [anon_sym_AT] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1061), + [anon_sym_clone] = ACTIONS(1063), + [anon_sym_print] = ACTIONS(1063), + [anon_sym_new] = ACTIONS(1063), + [anon_sym_PLUS_PLUS] = ACTIONS(1061), + [anon_sym_DASH_DASH] = ACTIONS(1061), + [sym_shell_command_expression] = ACTIONS(1061), + [anon_sym_list] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_self] = ACTIONS(1063), + [anon_sym_parent] = ACTIONS(1063), + [anon_sym_POUND_LBRACK] = ACTIONS(1061), + [sym_string] = ACTIONS(1061), + [sym_boolean] = ACTIONS(1063), + [sym_null] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_yield] = ACTIONS(1063), + [aux_sym_include_expression_token1] = ACTIONS(1063), + [aux_sym_include_once_expression_token1] = ACTIONS(1063), + [aux_sym_require_expression_token1] = ACTIONS(1063), + [aux_sym_require_once_expression_token1] = ACTIONS(1063), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1040), + [sym_heredoc] = ACTIONS(1061), }, [439] = { [sym_text_interpolation] = STATE(439), - [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_class_modifier_token1] = ACTIONS(1042), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1065), + [sym_name] = ACTIONS(1067), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1065), + [aux_sym_function_static_declaration_token1] = ACTIONS(1067), + [aux_sym_global_declaration_token1] = ACTIONS(1067), + [aux_sym_namespace_definition_token1] = ACTIONS(1067), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1067), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1067), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1067), + [anon_sym_BSLASH] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [aux_sym_trait_declaration_token1] = ACTIONS(1067), + [aux_sym_interface_declaration_token1] = ACTIONS(1067), + [aux_sym_class_declaration_token1] = ACTIONS(1067), + [aux_sym_class_modifier_token1] = ACTIONS(1067), + [aux_sym_class_modifier_token2] = ACTIONS(1067), + [aux_sym_visibility_modifier_token1] = ACTIONS(1067), + [aux_sym_visibility_modifier_token2] = ACTIONS(1067), + [aux_sym_visibility_modifier_token3] = ACTIONS(1067), + [aux_sym_arrow_function_token1] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_array] = ACTIONS(1067), + [anon_sym_unset] = ACTIONS(1067), + [aux_sym_echo_statement_token1] = ACTIONS(1067), + [anon_sym_declare] = ACTIONS(1067), + [aux_sym_declare_statement_token1] = ACTIONS(1067), + [sym_float] = ACTIONS(1067), + [aux_sym_try_statement_token1] = ACTIONS(1067), + [aux_sym_goto_statement_token1] = ACTIONS(1067), + [aux_sym_continue_statement_token1] = ACTIONS(1067), + [aux_sym_break_statement_token1] = ACTIONS(1067), + [sym_integer] = ACTIONS(1067), + [aux_sym_return_statement_token1] = ACTIONS(1067), + [aux_sym_throw_expression_token1] = ACTIONS(1067), + [aux_sym_while_statement_token1] = ACTIONS(1067), + [aux_sym_while_statement_token2] = ACTIONS(1067), + [aux_sym_do_statement_token1] = ACTIONS(1067), + [aux_sym_for_statement_token1] = ACTIONS(1067), + [aux_sym_for_statement_token2] = ACTIONS(1067), + [aux_sym_foreach_statement_token1] = ACTIONS(1067), + [aux_sym_foreach_statement_token2] = ACTIONS(1067), + [aux_sym_if_statement_token1] = ACTIONS(1067), + [aux_sym_if_statement_token2] = ACTIONS(1067), + [aux_sym_else_if_clause_token1] = ACTIONS(1067), + [aux_sym_else_clause_token1] = ACTIONS(1067), + [aux_sym_match_expression_token1] = ACTIONS(1067), + [aux_sym_match_default_expression_token1] = ACTIONS(1067), + [aux_sym_switch_statement_token1] = ACTIONS(1067), + [aux_sym_switch_block_token1] = ACTIONS(1067), + [aux_sym_case_statement_token1] = ACTIONS(1067), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1067), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_clone] = ACTIONS(1067), + [anon_sym_print] = ACTIONS(1067), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [sym_shell_command_expression] = ACTIONS(1065), + [anon_sym_list] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_self] = ACTIONS(1067), + [anon_sym_parent] = ACTIONS(1067), + [anon_sym_POUND_LBRACK] = ACTIONS(1065), + [sym_string] = ACTIONS(1065), + [sym_boolean] = ACTIONS(1067), + [sym_null] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1067), + [aux_sym_include_expression_token1] = ACTIONS(1067), + [aux_sym_include_once_expression_token1] = ACTIONS(1067), + [aux_sym_require_expression_token1] = ACTIONS(1067), + [aux_sym_require_once_expression_token1] = ACTIONS(1067), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1040), + [sym_heredoc] = ACTIONS(1065), }, [440] = { [sym_text_interpolation] = STATE(440), - [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_class_modifier_token1] = ACTIONS(1046), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1069), + [sym_name] = ACTIONS(1071), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1069), + [aux_sym_function_static_declaration_token1] = ACTIONS(1071), + [aux_sym_global_declaration_token1] = ACTIONS(1071), + [aux_sym_namespace_definition_token1] = ACTIONS(1071), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1071), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1071), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1071), + [anon_sym_BSLASH] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1069), + [anon_sym_RBRACE] = ACTIONS(1069), + [aux_sym_trait_declaration_token1] = ACTIONS(1071), + [aux_sym_interface_declaration_token1] = ACTIONS(1071), + [aux_sym_class_declaration_token1] = ACTIONS(1071), + [aux_sym_class_modifier_token1] = ACTIONS(1071), + [aux_sym_class_modifier_token2] = ACTIONS(1071), + [aux_sym_visibility_modifier_token1] = ACTIONS(1071), + [aux_sym_visibility_modifier_token2] = ACTIONS(1071), + [aux_sym_visibility_modifier_token3] = ACTIONS(1071), + [aux_sym_arrow_function_token1] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1069), + [anon_sym_array] = ACTIONS(1071), + [anon_sym_unset] = ACTIONS(1071), + [aux_sym_echo_statement_token1] = ACTIONS(1071), + [anon_sym_declare] = ACTIONS(1071), + [aux_sym_declare_statement_token1] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [aux_sym_try_statement_token1] = ACTIONS(1071), + [aux_sym_goto_statement_token1] = ACTIONS(1071), + [aux_sym_continue_statement_token1] = ACTIONS(1071), + [aux_sym_break_statement_token1] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [aux_sym_return_statement_token1] = ACTIONS(1071), + [aux_sym_throw_expression_token1] = ACTIONS(1071), + [aux_sym_while_statement_token1] = ACTIONS(1071), + [aux_sym_while_statement_token2] = ACTIONS(1071), + [aux_sym_do_statement_token1] = ACTIONS(1071), + [aux_sym_for_statement_token1] = ACTIONS(1071), + [aux_sym_for_statement_token2] = ACTIONS(1071), + [aux_sym_foreach_statement_token1] = ACTIONS(1071), + [aux_sym_foreach_statement_token2] = ACTIONS(1071), + [aux_sym_if_statement_token1] = ACTIONS(1071), + [aux_sym_if_statement_token2] = ACTIONS(1071), + [aux_sym_else_if_clause_token1] = ACTIONS(1071), + [aux_sym_else_clause_token1] = ACTIONS(1071), + [aux_sym_match_expression_token1] = ACTIONS(1071), + [aux_sym_match_default_expression_token1] = ACTIONS(1071), + [aux_sym_switch_statement_token1] = ACTIONS(1071), + [aux_sym_switch_block_token1] = ACTIONS(1071), + [aux_sym_case_statement_token1] = ACTIONS(1071), + [anon_sym_AT] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_BANG] = ACTIONS(1069), + [anon_sym_clone] = ACTIONS(1071), + [anon_sym_print] = ACTIONS(1071), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(1069), + [anon_sym_DASH_DASH] = ACTIONS(1069), + [sym_shell_command_expression] = ACTIONS(1069), + [anon_sym_list] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_self] = ACTIONS(1071), + [anon_sym_parent] = ACTIONS(1071), + [anon_sym_POUND_LBRACK] = ACTIONS(1069), + [sym_string] = ACTIONS(1069), + [sym_boolean] = ACTIONS(1071), + [sym_null] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1069), + [anon_sym_yield] = ACTIONS(1071), + [aux_sym_include_expression_token1] = ACTIONS(1071), + [aux_sym_include_once_expression_token1] = ACTIONS(1071), + [aux_sym_require_expression_token1] = ACTIONS(1071), + [aux_sym_require_once_expression_token1] = ACTIONS(1071), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1044), + [sym_heredoc] = ACTIONS(1069), }, [441] = { [sym_text_interpolation] = STATE(441), - [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_class_modifier_token1] = ACTIONS(1050), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1065), + [sym_name] = ACTIONS(1067), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1065), + [aux_sym_function_static_declaration_token1] = ACTIONS(1067), + [aux_sym_global_declaration_token1] = ACTIONS(1067), + [aux_sym_namespace_definition_token1] = ACTIONS(1067), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1067), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1067), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1067), + [anon_sym_BSLASH] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [aux_sym_trait_declaration_token1] = ACTIONS(1067), + [aux_sym_interface_declaration_token1] = ACTIONS(1067), + [aux_sym_class_declaration_token1] = ACTIONS(1067), + [aux_sym_class_modifier_token1] = ACTIONS(1067), + [aux_sym_class_modifier_token2] = ACTIONS(1067), + [aux_sym_visibility_modifier_token1] = ACTIONS(1067), + [aux_sym_visibility_modifier_token2] = ACTIONS(1067), + [aux_sym_visibility_modifier_token3] = ACTIONS(1067), + [aux_sym_arrow_function_token1] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_array] = ACTIONS(1067), + [anon_sym_unset] = ACTIONS(1067), + [aux_sym_echo_statement_token1] = ACTIONS(1067), + [anon_sym_declare] = ACTIONS(1067), + [aux_sym_declare_statement_token1] = ACTIONS(1067), + [sym_float] = ACTIONS(1067), + [aux_sym_try_statement_token1] = ACTIONS(1067), + [aux_sym_goto_statement_token1] = ACTIONS(1067), + [aux_sym_continue_statement_token1] = ACTIONS(1067), + [aux_sym_break_statement_token1] = ACTIONS(1067), + [sym_integer] = ACTIONS(1067), + [aux_sym_return_statement_token1] = ACTIONS(1067), + [aux_sym_throw_expression_token1] = ACTIONS(1067), + [aux_sym_while_statement_token1] = ACTIONS(1067), + [aux_sym_while_statement_token2] = ACTIONS(1067), + [aux_sym_do_statement_token1] = ACTIONS(1067), + [aux_sym_for_statement_token1] = ACTIONS(1067), + [aux_sym_for_statement_token2] = ACTIONS(1067), + [aux_sym_foreach_statement_token1] = ACTIONS(1067), + [aux_sym_foreach_statement_token2] = ACTIONS(1067), + [aux_sym_if_statement_token1] = ACTIONS(1067), + [aux_sym_if_statement_token2] = ACTIONS(1067), + [aux_sym_else_if_clause_token1] = ACTIONS(1067), + [aux_sym_else_clause_token1] = ACTIONS(1067), + [aux_sym_match_expression_token1] = ACTIONS(1067), + [aux_sym_match_default_expression_token1] = ACTIONS(1067), + [aux_sym_switch_statement_token1] = ACTIONS(1067), + [aux_sym_switch_block_token1] = ACTIONS(1067), + [aux_sym_case_statement_token1] = ACTIONS(1067), + [anon_sym_AT] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1067), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_clone] = ACTIONS(1067), + [anon_sym_print] = ACTIONS(1067), + [anon_sym_new] = ACTIONS(1067), + [anon_sym_PLUS_PLUS] = ACTIONS(1065), + [anon_sym_DASH_DASH] = ACTIONS(1065), + [sym_shell_command_expression] = ACTIONS(1065), + [anon_sym_list] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_self] = ACTIONS(1067), + [anon_sym_parent] = ACTIONS(1067), + [anon_sym_POUND_LBRACK] = ACTIONS(1065), + [sym_string] = ACTIONS(1065), + [sym_boolean] = ACTIONS(1067), + [sym_null] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_yield] = ACTIONS(1067), + [aux_sym_include_expression_token1] = ACTIONS(1067), + [aux_sym_include_once_expression_token1] = ACTIONS(1067), + [aux_sym_require_expression_token1] = ACTIONS(1067), + [aux_sym_require_once_expression_token1] = ACTIONS(1067), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1048), + [sym_heredoc] = ACTIONS(1065), }, [442] = { [sym_text_interpolation] = STATE(442), - [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_class_modifier_token1] = ACTIONS(1054), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1009), + [sym_name] = ACTIONS(1011), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1009), + [aux_sym_function_static_declaration_token1] = ACTIONS(1011), + [aux_sym_global_declaration_token1] = ACTIONS(1011), + [aux_sym_namespace_definition_token1] = ACTIONS(1011), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1011), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1011), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1011), + [anon_sym_BSLASH] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1009), + [aux_sym_trait_declaration_token1] = ACTIONS(1011), + [aux_sym_interface_declaration_token1] = ACTIONS(1011), + [aux_sym_class_declaration_token1] = ACTIONS(1011), + [aux_sym_class_modifier_token1] = ACTIONS(1011), + [aux_sym_class_modifier_token2] = ACTIONS(1011), + [aux_sym_visibility_modifier_token1] = ACTIONS(1011), + [aux_sym_visibility_modifier_token2] = ACTIONS(1011), + [aux_sym_visibility_modifier_token3] = ACTIONS(1011), + [aux_sym_arrow_function_token1] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1009), + [anon_sym_array] = ACTIONS(1011), + [anon_sym_unset] = ACTIONS(1011), + [aux_sym_echo_statement_token1] = ACTIONS(1011), + [anon_sym_declare] = ACTIONS(1011), + [aux_sym_declare_statement_token1] = ACTIONS(1011), + [sym_float] = ACTIONS(1011), + [aux_sym_try_statement_token1] = ACTIONS(1011), + [aux_sym_goto_statement_token1] = ACTIONS(1011), + [aux_sym_continue_statement_token1] = ACTIONS(1011), + [aux_sym_break_statement_token1] = ACTIONS(1011), + [sym_integer] = ACTIONS(1011), + [aux_sym_return_statement_token1] = ACTIONS(1011), + [aux_sym_throw_expression_token1] = ACTIONS(1011), + [aux_sym_while_statement_token1] = ACTIONS(1011), + [aux_sym_while_statement_token2] = ACTIONS(1011), + [aux_sym_do_statement_token1] = ACTIONS(1011), + [aux_sym_for_statement_token1] = ACTIONS(1011), + [aux_sym_for_statement_token2] = ACTIONS(1011), + [aux_sym_foreach_statement_token1] = ACTIONS(1011), + [aux_sym_foreach_statement_token2] = ACTIONS(1011), + [aux_sym_if_statement_token1] = ACTIONS(1011), + [aux_sym_if_statement_token2] = ACTIONS(1011), + [aux_sym_else_if_clause_token1] = ACTIONS(1011), + [aux_sym_else_clause_token1] = ACTIONS(1011), + [aux_sym_match_expression_token1] = ACTIONS(1011), + [aux_sym_match_default_expression_token1] = ACTIONS(1011), + [aux_sym_switch_statement_token1] = ACTIONS(1011), + [aux_sym_switch_block_token1] = ACTIONS(1011), + [aux_sym_case_statement_token1] = ACTIONS(1011), + [anon_sym_AT] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_TILDE] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1009), + [anon_sym_clone] = ACTIONS(1011), + [anon_sym_print] = ACTIONS(1011), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1009), + [anon_sym_DASH_DASH] = ACTIONS(1009), + [sym_shell_command_expression] = ACTIONS(1009), + [anon_sym_list] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_self] = ACTIONS(1011), + [anon_sym_parent] = ACTIONS(1011), + [anon_sym_POUND_LBRACK] = ACTIONS(1009), + [sym_string] = ACTIONS(1009), + [sym_boolean] = ACTIONS(1011), + [sym_null] = ACTIONS(1011), + [anon_sym_DOLLAR] = ACTIONS(1009), + [anon_sym_yield] = ACTIONS(1011), + [aux_sym_include_expression_token1] = ACTIONS(1011), + [aux_sym_include_once_expression_token1] = ACTIONS(1011), + [aux_sym_require_expression_token1] = ACTIONS(1011), + [aux_sym_require_once_expression_token1] = ACTIONS(1011), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1052), + [sym_heredoc] = ACTIONS(1009), }, [443] = { [sym_text_interpolation] = STATE(443), - [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_class_modifier_token1] = ACTIONS(1058), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1073), + [sym_name] = ACTIONS(1075), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1073), + [aux_sym_function_static_declaration_token1] = ACTIONS(1075), + [aux_sym_global_declaration_token1] = ACTIONS(1075), + [aux_sym_namespace_definition_token1] = ACTIONS(1075), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1075), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1075), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1075), + [anon_sym_BSLASH] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_RBRACE] = ACTIONS(1073), + [aux_sym_trait_declaration_token1] = ACTIONS(1075), + [aux_sym_interface_declaration_token1] = ACTIONS(1075), + [aux_sym_class_declaration_token1] = ACTIONS(1075), + [aux_sym_class_modifier_token1] = ACTIONS(1075), + [aux_sym_class_modifier_token2] = ACTIONS(1075), + [aux_sym_visibility_modifier_token1] = ACTIONS(1075), + [aux_sym_visibility_modifier_token2] = ACTIONS(1075), + [aux_sym_visibility_modifier_token3] = ACTIONS(1075), + [aux_sym_arrow_function_token1] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_array] = ACTIONS(1075), + [anon_sym_unset] = ACTIONS(1075), + [aux_sym_echo_statement_token1] = ACTIONS(1075), + [anon_sym_declare] = ACTIONS(1075), + [aux_sym_declare_statement_token1] = ACTIONS(1075), + [sym_float] = ACTIONS(1075), + [aux_sym_try_statement_token1] = ACTIONS(1075), + [aux_sym_goto_statement_token1] = ACTIONS(1075), + [aux_sym_continue_statement_token1] = ACTIONS(1075), + [aux_sym_break_statement_token1] = ACTIONS(1075), + [sym_integer] = ACTIONS(1075), + [aux_sym_return_statement_token1] = ACTIONS(1075), + [aux_sym_throw_expression_token1] = ACTIONS(1075), + [aux_sym_while_statement_token1] = ACTIONS(1075), + [aux_sym_while_statement_token2] = ACTIONS(1075), + [aux_sym_do_statement_token1] = ACTIONS(1075), + [aux_sym_for_statement_token1] = ACTIONS(1075), + [aux_sym_for_statement_token2] = ACTIONS(1075), + [aux_sym_foreach_statement_token1] = ACTIONS(1075), + [aux_sym_foreach_statement_token2] = ACTIONS(1075), + [aux_sym_if_statement_token1] = ACTIONS(1075), + [aux_sym_if_statement_token2] = ACTIONS(1075), + [aux_sym_else_if_clause_token1] = ACTIONS(1075), + [aux_sym_else_clause_token1] = ACTIONS(1075), + [aux_sym_match_expression_token1] = ACTIONS(1075), + [aux_sym_match_default_expression_token1] = ACTIONS(1075), + [aux_sym_switch_statement_token1] = ACTIONS(1075), + [aux_sym_switch_block_token1] = ACTIONS(1075), + [aux_sym_case_statement_token1] = ACTIONS(1075), + [anon_sym_AT] = ACTIONS(1073), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_TILDE] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1073), + [anon_sym_clone] = ACTIONS(1075), + [anon_sym_print] = ACTIONS(1075), + [anon_sym_new] = ACTIONS(1075), + [anon_sym_PLUS_PLUS] = ACTIONS(1073), + [anon_sym_DASH_DASH] = ACTIONS(1073), + [sym_shell_command_expression] = ACTIONS(1073), + [anon_sym_list] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1073), + [anon_sym_self] = ACTIONS(1075), + [anon_sym_parent] = ACTIONS(1075), + [anon_sym_POUND_LBRACK] = ACTIONS(1073), + [sym_string] = ACTIONS(1073), + [sym_boolean] = ACTIONS(1075), + [sym_null] = ACTIONS(1075), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_yield] = ACTIONS(1075), + [aux_sym_include_expression_token1] = ACTIONS(1075), + [aux_sym_include_once_expression_token1] = ACTIONS(1075), + [aux_sym_require_expression_token1] = ACTIONS(1075), + [aux_sym_require_once_expression_token1] = ACTIONS(1075), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1056), + [sym_heredoc] = ACTIONS(1073), }, [444] = { [sym_text_interpolation] = STATE(444), - [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_class_modifier_token1] = ACTIONS(926), - [aux_sym_class_modifier_token2] = 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_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), - [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), + [ts_builtin_sym_end] = ACTIONS(1077), + [sym_name] = ACTIONS(1079), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1077), + [aux_sym_function_static_declaration_token1] = ACTIONS(1079), + [aux_sym_global_declaration_token1] = ACTIONS(1079), + [aux_sym_namespace_definition_token1] = ACTIONS(1079), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1079), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1079), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1079), + [anon_sym_BSLASH] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_RBRACE] = ACTIONS(1077), + [aux_sym_trait_declaration_token1] = ACTIONS(1079), + [aux_sym_interface_declaration_token1] = ACTIONS(1079), + [aux_sym_class_declaration_token1] = ACTIONS(1079), + [aux_sym_class_modifier_token1] = ACTIONS(1079), + [aux_sym_class_modifier_token2] = ACTIONS(1079), + [aux_sym_visibility_modifier_token1] = ACTIONS(1079), + [aux_sym_visibility_modifier_token2] = ACTIONS(1079), + [aux_sym_visibility_modifier_token3] = ACTIONS(1079), + [aux_sym_arrow_function_token1] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1077), + [anon_sym_array] = ACTIONS(1079), + [anon_sym_unset] = ACTIONS(1079), + [aux_sym_echo_statement_token1] = ACTIONS(1079), + [anon_sym_declare] = ACTIONS(1079), + [aux_sym_declare_statement_token1] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [aux_sym_try_statement_token1] = ACTIONS(1079), + [aux_sym_goto_statement_token1] = ACTIONS(1079), + [aux_sym_continue_statement_token1] = ACTIONS(1079), + [aux_sym_break_statement_token1] = ACTIONS(1079), + [sym_integer] = ACTIONS(1079), + [aux_sym_return_statement_token1] = ACTIONS(1079), + [aux_sym_throw_expression_token1] = ACTIONS(1079), + [aux_sym_while_statement_token1] = ACTIONS(1079), + [aux_sym_while_statement_token2] = ACTIONS(1079), + [aux_sym_do_statement_token1] = ACTIONS(1079), + [aux_sym_for_statement_token1] = ACTIONS(1079), + [aux_sym_for_statement_token2] = ACTIONS(1079), + [aux_sym_foreach_statement_token1] = ACTIONS(1079), + [aux_sym_foreach_statement_token2] = ACTIONS(1079), + [aux_sym_if_statement_token1] = ACTIONS(1079), + [aux_sym_if_statement_token2] = ACTIONS(1079), + [aux_sym_else_if_clause_token1] = ACTIONS(1079), + [aux_sym_else_clause_token1] = ACTIONS(1079), + [aux_sym_match_expression_token1] = ACTIONS(1079), + [aux_sym_match_default_expression_token1] = ACTIONS(1079), + [aux_sym_switch_statement_token1] = ACTIONS(1079), + [aux_sym_switch_block_token1] = ACTIONS(1079), + [aux_sym_case_statement_token1] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1077), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_clone] = ACTIONS(1079), + [anon_sym_print] = ACTIONS(1079), + [anon_sym_new] = ACTIONS(1079), + [anon_sym_PLUS_PLUS] = ACTIONS(1077), + [anon_sym_DASH_DASH] = ACTIONS(1077), + [sym_shell_command_expression] = ACTIONS(1077), + [anon_sym_list] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1077), + [anon_sym_self] = ACTIONS(1079), + [anon_sym_parent] = ACTIONS(1079), + [anon_sym_POUND_LBRACK] = ACTIONS(1077), + [sym_string] = ACTIONS(1077), + [sym_boolean] = ACTIONS(1079), + [sym_null] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1077), + [anon_sym_yield] = ACTIONS(1079), + [aux_sym_include_expression_token1] = ACTIONS(1079), + [aux_sym_include_once_expression_token1] = ACTIONS(1079), + [aux_sym_require_expression_token1] = ACTIONS(1079), + [aux_sym_require_once_expression_token1] = ACTIONS(1079), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(924), + [sym_heredoc] = ACTIONS(1077), }, [445] = { [sym_text_interpolation] = STATE(445), - [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_class_modifier_token1] = ACTIONS(930), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1081), + [sym_name] = ACTIONS(1083), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1081), + [aux_sym_function_static_declaration_token1] = ACTIONS(1083), + [aux_sym_global_declaration_token1] = ACTIONS(1083), + [aux_sym_namespace_definition_token1] = ACTIONS(1083), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1083), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1083), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1083), + [anon_sym_BSLASH] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [aux_sym_trait_declaration_token1] = ACTIONS(1083), + [aux_sym_interface_declaration_token1] = ACTIONS(1083), + [aux_sym_class_declaration_token1] = ACTIONS(1083), + [aux_sym_class_modifier_token1] = ACTIONS(1083), + [aux_sym_class_modifier_token2] = ACTIONS(1083), + [aux_sym_visibility_modifier_token1] = ACTIONS(1083), + [aux_sym_visibility_modifier_token2] = ACTIONS(1083), + [aux_sym_visibility_modifier_token3] = ACTIONS(1083), + [aux_sym_arrow_function_token1] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1081), + [anon_sym_array] = ACTIONS(1083), + [anon_sym_unset] = ACTIONS(1083), + [aux_sym_echo_statement_token1] = ACTIONS(1083), + [anon_sym_declare] = ACTIONS(1083), + [aux_sym_declare_statement_token1] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [aux_sym_try_statement_token1] = ACTIONS(1083), + [aux_sym_goto_statement_token1] = ACTIONS(1083), + [aux_sym_continue_statement_token1] = ACTIONS(1083), + [aux_sym_break_statement_token1] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [aux_sym_return_statement_token1] = ACTIONS(1083), + [aux_sym_throw_expression_token1] = ACTIONS(1083), + [aux_sym_while_statement_token1] = ACTIONS(1083), + [aux_sym_while_statement_token2] = ACTIONS(1083), + [aux_sym_do_statement_token1] = ACTIONS(1083), + [aux_sym_for_statement_token1] = ACTIONS(1083), + [aux_sym_for_statement_token2] = ACTIONS(1083), + [aux_sym_foreach_statement_token1] = ACTIONS(1083), + [aux_sym_foreach_statement_token2] = ACTIONS(1083), + [aux_sym_if_statement_token1] = ACTIONS(1083), + [aux_sym_if_statement_token2] = ACTIONS(1083), + [aux_sym_else_if_clause_token1] = ACTIONS(1083), + [aux_sym_else_clause_token1] = ACTIONS(1083), + [aux_sym_match_expression_token1] = ACTIONS(1083), + [aux_sym_match_default_expression_token1] = ACTIONS(1083), + [aux_sym_switch_statement_token1] = ACTIONS(1083), + [aux_sym_switch_block_token1] = ACTIONS(1083), + [aux_sym_case_statement_token1] = ACTIONS(1083), + [anon_sym_AT] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_clone] = ACTIONS(1083), + [anon_sym_print] = ACTIONS(1083), + [anon_sym_new] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1081), + [anon_sym_DASH_DASH] = ACTIONS(1081), + [sym_shell_command_expression] = ACTIONS(1081), + [anon_sym_list] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1081), + [anon_sym_self] = ACTIONS(1083), + [anon_sym_parent] = ACTIONS(1083), + [anon_sym_POUND_LBRACK] = ACTIONS(1081), + [sym_string] = ACTIONS(1081), + [sym_boolean] = ACTIONS(1083), + [sym_null] = ACTIONS(1083), + [anon_sym_DOLLAR] = ACTIONS(1081), + [anon_sym_yield] = ACTIONS(1083), + [aux_sym_include_expression_token1] = ACTIONS(1083), + [aux_sym_include_once_expression_token1] = ACTIONS(1083), + [aux_sym_require_expression_token1] = ACTIONS(1083), + [aux_sym_require_once_expression_token1] = ACTIONS(1083), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(928), + [sym_heredoc] = ACTIONS(1081), }, [446] = { [sym_text_interpolation] = STATE(446), - [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_class_modifier_token1] = ACTIONS(1062), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1085), + [sym_name] = ACTIONS(1087), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1085), + [aux_sym_function_static_declaration_token1] = ACTIONS(1087), + [aux_sym_global_declaration_token1] = ACTIONS(1087), + [aux_sym_namespace_definition_token1] = ACTIONS(1087), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1087), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1087), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [aux_sym_trait_declaration_token1] = ACTIONS(1087), + [aux_sym_interface_declaration_token1] = ACTIONS(1087), + [aux_sym_class_declaration_token1] = ACTIONS(1087), + [aux_sym_class_modifier_token1] = ACTIONS(1087), + [aux_sym_class_modifier_token2] = ACTIONS(1087), + [aux_sym_visibility_modifier_token1] = ACTIONS(1087), + [aux_sym_visibility_modifier_token2] = ACTIONS(1087), + [aux_sym_visibility_modifier_token3] = ACTIONS(1087), + [aux_sym_arrow_function_token1] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_array] = ACTIONS(1087), + [anon_sym_unset] = ACTIONS(1087), + [aux_sym_echo_statement_token1] = ACTIONS(1087), + [anon_sym_declare] = ACTIONS(1087), + [aux_sym_declare_statement_token1] = ACTIONS(1087), + [sym_float] = ACTIONS(1087), + [aux_sym_try_statement_token1] = ACTIONS(1087), + [aux_sym_goto_statement_token1] = ACTIONS(1087), + [aux_sym_continue_statement_token1] = ACTIONS(1087), + [aux_sym_break_statement_token1] = ACTIONS(1087), + [sym_integer] = ACTIONS(1087), + [aux_sym_return_statement_token1] = ACTIONS(1087), + [aux_sym_throw_expression_token1] = ACTIONS(1087), + [aux_sym_while_statement_token1] = ACTIONS(1087), + [aux_sym_while_statement_token2] = ACTIONS(1087), + [aux_sym_do_statement_token1] = ACTIONS(1087), + [aux_sym_for_statement_token1] = ACTIONS(1087), + [aux_sym_for_statement_token2] = ACTIONS(1087), + [aux_sym_foreach_statement_token1] = ACTIONS(1087), + [aux_sym_foreach_statement_token2] = ACTIONS(1087), + [aux_sym_if_statement_token1] = ACTIONS(1087), + [aux_sym_if_statement_token2] = ACTIONS(1087), + [aux_sym_else_if_clause_token1] = ACTIONS(1087), + [aux_sym_else_clause_token1] = ACTIONS(1087), + [aux_sym_match_expression_token1] = ACTIONS(1087), + [aux_sym_match_default_expression_token1] = ACTIONS(1087), + [aux_sym_switch_statement_token1] = ACTIONS(1087), + [aux_sym_switch_block_token1] = ACTIONS(1087), + [aux_sym_case_statement_token1] = ACTIONS(1087), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_clone] = ACTIONS(1087), + [anon_sym_print] = ACTIONS(1087), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [sym_shell_command_expression] = ACTIONS(1085), + [anon_sym_list] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_self] = ACTIONS(1087), + [anon_sym_parent] = ACTIONS(1087), + [anon_sym_POUND_LBRACK] = ACTIONS(1085), + [sym_string] = ACTIONS(1085), + [sym_boolean] = ACTIONS(1087), + [sym_null] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_yield] = ACTIONS(1087), + [aux_sym_include_expression_token1] = ACTIONS(1087), + [aux_sym_include_once_expression_token1] = ACTIONS(1087), + [aux_sym_require_expression_token1] = ACTIONS(1087), + [aux_sym_require_once_expression_token1] = ACTIONS(1087), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1060), + [sym_heredoc] = ACTIONS(1085), }, [447] = { [sym_text_interpolation] = STATE(447), - [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_class_modifier_token1] = ACTIONS(1066), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1089), + [sym_name] = ACTIONS(1091), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1089), + [aux_sym_function_static_declaration_token1] = ACTIONS(1091), + [aux_sym_global_declaration_token1] = ACTIONS(1091), + [aux_sym_namespace_definition_token1] = ACTIONS(1091), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1091), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1091), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1091), + [anon_sym_BSLASH] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [aux_sym_trait_declaration_token1] = ACTIONS(1091), + [aux_sym_interface_declaration_token1] = ACTIONS(1091), + [aux_sym_class_declaration_token1] = ACTIONS(1091), + [aux_sym_class_modifier_token1] = ACTIONS(1091), + [aux_sym_class_modifier_token2] = ACTIONS(1091), + [aux_sym_visibility_modifier_token1] = ACTIONS(1091), + [aux_sym_visibility_modifier_token2] = ACTIONS(1091), + [aux_sym_visibility_modifier_token3] = ACTIONS(1091), + [aux_sym_arrow_function_token1] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_array] = ACTIONS(1091), + [anon_sym_unset] = ACTIONS(1091), + [aux_sym_echo_statement_token1] = ACTIONS(1091), + [anon_sym_declare] = ACTIONS(1091), + [aux_sym_declare_statement_token1] = ACTIONS(1091), + [sym_float] = ACTIONS(1091), + [aux_sym_try_statement_token1] = ACTIONS(1091), + [aux_sym_goto_statement_token1] = ACTIONS(1091), + [aux_sym_continue_statement_token1] = ACTIONS(1091), + [aux_sym_break_statement_token1] = ACTIONS(1091), + [sym_integer] = ACTIONS(1091), + [aux_sym_return_statement_token1] = ACTIONS(1091), + [aux_sym_throw_expression_token1] = ACTIONS(1091), + [aux_sym_while_statement_token1] = ACTIONS(1091), + [aux_sym_while_statement_token2] = ACTIONS(1091), + [aux_sym_do_statement_token1] = ACTIONS(1091), + [aux_sym_for_statement_token1] = ACTIONS(1091), + [aux_sym_for_statement_token2] = ACTIONS(1091), + [aux_sym_foreach_statement_token1] = ACTIONS(1091), + [aux_sym_foreach_statement_token2] = ACTIONS(1091), + [aux_sym_if_statement_token1] = ACTIONS(1091), + [aux_sym_if_statement_token2] = ACTIONS(1091), + [aux_sym_else_if_clause_token1] = ACTIONS(1091), + [aux_sym_else_clause_token1] = ACTIONS(1091), + [aux_sym_match_expression_token1] = ACTIONS(1091), + [aux_sym_match_default_expression_token1] = ACTIONS(1091), + [aux_sym_switch_statement_token1] = ACTIONS(1091), + [aux_sym_switch_block_token1] = ACTIONS(1091), + [aux_sym_case_statement_token1] = ACTIONS(1091), + [anon_sym_AT] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(1089), + [anon_sym_BANG] = ACTIONS(1089), + [anon_sym_clone] = ACTIONS(1091), + [anon_sym_print] = ACTIONS(1091), + [anon_sym_new] = ACTIONS(1091), + [anon_sym_PLUS_PLUS] = ACTIONS(1089), + [anon_sym_DASH_DASH] = ACTIONS(1089), + [sym_shell_command_expression] = ACTIONS(1089), + [anon_sym_list] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_self] = ACTIONS(1091), + [anon_sym_parent] = ACTIONS(1091), + [anon_sym_POUND_LBRACK] = ACTIONS(1089), + [sym_string] = ACTIONS(1089), + [sym_boolean] = ACTIONS(1091), + [sym_null] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_yield] = ACTIONS(1091), + [aux_sym_include_expression_token1] = ACTIONS(1091), + [aux_sym_include_once_expression_token1] = ACTIONS(1091), + [aux_sym_require_expression_token1] = ACTIONS(1091), + [aux_sym_require_once_expression_token1] = ACTIONS(1091), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1064), + [sym_heredoc] = ACTIONS(1089), }, [448] = { [sym_text_interpolation] = STATE(448), - [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_class_modifier_token1] = ACTIONS(1070), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1093), + [sym_name] = ACTIONS(1095), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1093), + [aux_sym_function_static_declaration_token1] = ACTIONS(1095), + [aux_sym_global_declaration_token1] = ACTIONS(1095), + [aux_sym_namespace_definition_token1] = ACTIONS(1095), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1095), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1095), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1095), + [anon_sym_BSLASH] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [aux_sym_trait_declaration_token1] = ACTIONS(1095), + [aux_sym_interface_declaration_token1] = ACTIONS(1095), + [aux_sym_class_declaration_token1] = ACTIONS(1095), + [aux_sym_class_modifier_token1] = ACTIONS(1095), + [aux_sym_class_modifier_token2] = ACTIONS(1095), + [aux_sym_visibility_modifier_token1] = ACTIONS(1095), + [aux_sym_visibility_modifier_token2] = ACTIONS(1095), + [aux_sym_visibility_modifier_token3] = ACTIONS(1095), + [aux_sym_arrow_function_token1] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_array] = ACTIONS(1095), + [anon_sym_unset] = ACTIONS(1095), + [aux_sym_echo_statement_token1] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [aux_sym_declare_statement_token1] = ACTIONS(1095), + [sym_float] = ACTIONS(1095), + [aux_sym_try_statement_token1] = ACTIONS(1095), + [aux_sym_goto_statement_token1] = ACTIONS(1095), + [aux_sym_continue_statement_token1] = ACTIONS(1095), + [aux_sym_break_statement_token1] = ACTIONS(1095), + [sym_integer] = ACTIONS(1095), + [aux_sym_return_statement_token1] = ACTIONS(1095), + [aux_sym_throw_expression_token1] = ACTIONS(1095), + [aux_sym_while_statement_token1] = ACTIONS(1095), + [aux_sym_while_statement_token2] = ACTIONS(1095), + [aux_sym_do_statement_token1] = ACTIONS(1095), + [aux_sym_for_statement_token1] = ACTIONS(1095), + [aux_sym_for_statement_token2] = ACTIONS(1095), + [aux_sym_foreach_statement_token1] = ACTIONS(1095), + [aux_sym_foreach_statement_token2] = ACTIONS(1095), + [aux_sym_if_statement_token1] = ACTIONS(1095), + [aux_sym_if_statement_token2] = ACTIONS(1095), + [aux_sym_else_if_clause_token1] = ACTIONS(1095), + [aux_sym_else_clause_token1] = ACTIONS(1095), + [aux_sym_match_expression_token1] = ACTIONS(1095), + [aux_sym_match_default_expression_token1] = ACTIONS(1095), + [aux_sym_switch_statement_token1] = ACTIONS(1095), + [aux_sym_switch_block_token1] = ACTIONS(1095), + [aux_sym_case_statement_token1] = ACTIONS(1095), + [anon_sym_AT] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_TILDE] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_clone] = ACTIONS(1095), + [anon_sym_print] = ACTIONS(1095), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [sym_shell_command_expression] = ACTIONS(1093), + [anon_sym_list] = ACTIONS(1095), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_self] = ACTIONS(1095), + [anon_sym_parent] = ACTIONS(1095), + [anon_sym_POUND_LBRACK] = ACTIONS(1093), + [sym_string] = ACTIONS(1093), + [sym_boolean] = ACTIONS(1095), + [sym_null] = ACTIONS(1095), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_yield] = ACTIONS(1095), + [aux_sym_include_expression_token1] = ACTIONS(1095), + [aux_sym_include_once_expression_token1] = ACTIONS(1095), + [aux_sym_require_expression_token1] = ACTIONS(1095), + [aux_sym_require_once_expression_token1] = ACTIONS(1095), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1068), + [sym_heredoc] = ACTIONS(1093), }, [449] = { [sym_text_interpolation] = STATE(449), - [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_class_modifier_token1] = ACTIONS(1074), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1085), + [sym_name] = ACTIONS(1087), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1085), + [aux_sym_function_static_declaration_token1] = ACTIONS(1087), + [aux_sym_global_declaration_token1] = ACTIONS(1087), + [aux_sym_namespace_definition_token1] = ACTIONS(1087), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1087), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1087), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1087), + [anon_sym_BSLASH] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [aux_sym_trait_declaration_token1] = ACTIONS(1087), + [aux_sym_interface_declaration_token1] = ACTIONS(1087), + [aux_sym_class_declaration_token1] = ACTIONS(1087), + [aux_sym_class_modifier_token1] = ACTIONS(1087), + [aux_sym_class_modifier_token2] = ACTIONS(1087), + [aux_sym_visibility_modifier_token1] = ACTIONS(1087), + [aux_sym_visibility_modifier_token2] = ACTIONS(1087), + [aux_sym_visibility_modifier_token3] = ACTIONS(1087), + [aux_sym_arrow_function_token1] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_array] = ACTIONS(1087), + [anon_sym_unset] = ACTIONS(1087), + [aux_sym_echo_statement_token1] = ACTIONS(1087), + [anon_sym_declare] = ACTIONS(1087), + [aux_sym_declare_statement_token1] = ACTIONS(1087), + [sym_float] = ACTIONS(1087), + [aux_sym_try_statement_token1] = ACTIONS(1087), + [aux_sym_goto_statement_token1] = ACTIONS(1087), + [aux_sym_continue_statement_token1] = ACTIONS(1087), + [aux_sym_break_statement_token1] = ACTIONS(1087), + [sym_integer] = ACTIONS(1087), + [aux_sym_return_statement_token1] = ACTIONS(1087), + [aux_sym_throw_expression_token1] = ACTIONS(1087), + [aux_sym_while_statement_token1] = ACTIONS(1087), + [aux_sym_while_statement_token2] = ACTIONS(1087), + [aux_sym_do_statement_token1] = ACTIONS(1087), + [aux_sym_for_statement_token1] = ACTIONS(1087), + [aux_sym_for_statement_token2] = ACTIONS(1087), + [aux_sym_foreach_statement_token1] = ACTIONS(1087), + [aux_sym_foreach_statement_token2] = ACTIONS(1087), + [aux_sym_if_statement_token1] = ACTIONS(1087), + [aux_sym_if_statement_token2] = ACTIONS(1087), + [aux_sym_else_if_clause_token1] = ACTIONS(1087), + [aux_sym_else_clause_token1] = ACTIONS(1087), + [aux_sym_match_expression_token1] = ACTIONS(1087), + [aux_sym_match_default_expression_token1] = ACTIONS(1087), + [aux_sym_switch_statement_token1] = ACTIONS(1087), + [aux_sym_switch_block_token1] = ACTIONS(1087), + [aux_sym_case_statement_token1] = ACTIONS(1087), + [anon_sym_AT] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_clone] = ACTIONS(1087), + [anon_sym_print] = ACTIONS(1087), + [anon_sym_new] = ACTIONS(1087), + [anon_sym_PLUS_PLUS] = ACTIONS(1085), + [anon_sym_DASH_DASH] = ACTIONS(1085), + [sym_shell_command_expression] = ACTIONS(1085), + [anon_sym_list] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_self] = ACTIONS(1087), + [anon_sym_parent] = ACTIONS(1087), + [anon_sym_POUND_LBRACK] = ACTIONS(1085), + [sym_string] = ACTIONS(1085), + [sym_boolean] = ACTIONS(1087), + [sym_null] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_yield] = ACTIONS(1087), + [aux_sym_include_expression_token1] = ACTIONS(1087), + [aux_sym_include_once_expression_token1] = ACTIONS(1087), + [aux_sym_require_expression_token1] = ACTIONS(1087), + [aux_sym_require_once_expression_token1] = ACTIONS(1087), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1072), + [sym_heredoc] = ACTIONS(1085), }, [450] = { [sym_text_interpolation] = STATE(450), - [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_class_modifier_token1] = ACTIONS(1078), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1097), + [sym_name] = ACTIONS(1099), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1097), + [aux_sym_function_static_declaration_token1] = ACTIONS(1099), + [aux_sym_global_declaration_token1] = ACTIONS(1099), + [aux_sym_namespace_definition_token1] = ACTIONS(1099), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1099), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1099), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1099), + [anon_sym_BSLASH] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_RBRACE] = ACTIONS(1097), + [aux_sym_trait_declaration_token1] = ACTIONS(1099), + [aux_sym_interface_declaration_token1] = ACTIONS(1099), + [aux_sym_class_declaration_token1] = ACTIONS(1099), + [aux_sym_class_modifier_token1] = ACTIONS(1099), + [aux_sym_class_modifier_token2] = ACTIONS(1099), + [aux_sym_visibility_modifier_token1] = ACTIONS(1099), + [aux_sym_visibility_modifier_token2] = ACTIONS(1099), + [aux_sym_visibility_modifier_token3] = ACTIONS(1099), + [aux_sym_arrow_function_token1] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_array] = ACTIONS(1099), + [anon_sym_unset] = ACTIONS(1099), + [aux_sym_echo_statement_token1] = ACTIONS(1099), + [anon_sym_declare] = ACTIONS(1099), + [aux_sym_declare_statement_token1] = ACTIONS(1099), + [sym_float] = ACTIONS(1099), + [aux_sym_try_statement_token1] = ACTIONS(1099), + [aux_sym_goto_statement_token1] = ACTIONS(1099), + [aux_sym_continue_statement_token1] = ACTIONS(1099), + [aux_sym_break_statement_token1] = ACTIONS(1099), + [sym_integer] = ACTIONS(1099), + [aux_sym_return_statement_token1] = ACTIONS(1099), + [aux_sym_throw_expression_token1] = ACTIONS(1099), + [aux_sym_while_statement_token1] = ACTIONS(1099), + [aux_sym_while_statement_token2] = ACTIONS(1099), + [aux_sym_do_statement_token1] = ACTIONS(1099), + [aux_sym_for_statement_token1] = ACTIONS(1099), + [aux_sym_for_statement_token2] = ACTIONS(1099), + [aux_sym_foreach_statement_token1] = ACTIONS(1099), + [aux_sym_foreach_statement_token2] = ACTIONS(1099), + [aux_sym_if_statement_token1] = ACTIONS(1099), + [aux_sym_if_statement_token2] = ACTIONS(1099), + [aux_sym_else_if_clause_token1] = ACTIONS(1099), + [aux_sym_else_clause_token1] = ACTIONS(1099), + [aux_sym_match_expression_token1] = ACTIONS(1099), + [aux_sym_match_default_expression_token1] = ACTIONS(1099), + [aux_sym_switch_statement_token1] = ACTIONS(1099), + [aux_sym_switch_block_token1] = ACTIONS(1099), + [aux_sym_case_statement_token1] = ACTIONS(1099), + [anon_sym_AT] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1099), + [anon_sym_DASH] = ACTIONS(1099), + [anon_sym_TILDE] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_clone] = ACTIONS(1099), + [anon_sym_print] = ACTIONS(1099), + [anon_sym_new] = ACTIONS(1099), + [anon_sym_PLUS_PLUS] = ACTIONS(1097), + [anon_sym_DASH_DASH] = ACTIONS(1097), + [sym_shell_command_expression] = ACTIONS(1097), + [anon_sym_list] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_self] = ACTIONS(1099), + [anon_sym_parent] = ACTIONS(1099), + [anon_sym_POUND_LBRACK] = ACTIONS(1097), + [sym_string] = ACTIONS(1097), + [sym_boolean] = ACTIONS(1099), + [sym_null] = ACTIONS(1099), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_yield] = ACTIONS(1099), + [aux_sym_include_expression_token1] = ACTIONS(1099), + [aux_sym_include_once_expression_token1] = ACTIONS(1099), + [aux_sym_require_expression_token1] = ACTIONS(1099), + [aux_sym_require_once_expression_token1] = ACTIONS(1099), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1076), + [sym_heredoc] = ACTIONS(1097), }, [451] = { [sym_text_interpolation] = STATE(451), - [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_class_modifier_token1] = ACTIONS(1082), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1101), + [sym_name] = ACTIONS(1103), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1101), + [aux_sym_function_static_declaration_token1] = ACTIONS(1103), + [aux_sym_global_declaration_token1] = ACTIONS(1103), + [aux_sym_namespace_definition_token1] = ACTIONS(1103), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1103), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1103), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1103), + [anon_sym_BSLASH] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(1101), + [aux_sym_trait_declaration_token1] = ACTIONS(1103), + [aux_sym_interface_declaration_token1] = ACTIONS(1103), + [aux_sym_class_declaration_token1] = ACTIONS(1103), + [aux_sym_class_modifier_token1] = ACTIONS(1103), + [aux_sym_class_modifier_token2] = ACTIONS(1103), + [aux_sym_visibility_modifier_token1] = ACTIONS(1103), + [aux_sym_visibility_modifier_token2] = ACTIONS(1103), + [aux_sym_visibility_modifier_token3] = ACTIONS(1103), + [aux_sym_arrow_function_token1] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_array] = ACTIONS(1103), + [anon_sym_unset] = ACTIONS(1103), + [aux_sym_echo_statement_token1] = ACTIONS(1103), + [anon_sym_declare] = ACTIONS(1103), + [aux_sym_declare_statement_token1] = ACTIONS(1103), + [sym_float] = ACTIONS(1103), + [aux_sym_try_statement_token1] = ACTIONS(1103), + [aux_sym_goto_statement_token1] = ACTIONS(1103), + [aux_sym_continue_statement_token1] = ACTIONS(1103), + [aux_sym_break_statement_token1] = ACTIONS(1103), + [sym_integer] = ACTIONS(1103), + [aux_sym_return_statement_token1] = ACTIONS(1103), + [aux_sym_throw_expression_token1] = ACTIONS(1103), + [aux_sym_while_statement_token1] = ACTIONS(1103), + [aux_sym_while_statement_token2] = ACTIONS(1103), + [aux_sym_do_statement_token1] = ACTIONS(1103), + [aux_sym_for_statement_token1] = ACTIONS(1103), + [aux_sym_for_statement_token2] = ACTIONS(1103), + [aux_sym_foreach_statement_token1] = ACTIONS(1103), + [aux_sym_foreach_statement_token2] = ACTIONS(1103), + [aux_sym_if_statement_token1] = ACTIONS(1103), + [aux_sym_if_statement_token2] = ACTIONS(1103), + [aux_sym_else_if_clause_token1] = ACTIONS(1103), + [aux_sym_else_clause_token1] = ACTIONS(1103), + [aux_sym_match_expression_token1] = ACTIONS(1103), + [aux_sym_match_default_expression_token1] = ACTIONS(1103), + [aux_sym_switch_statement_token1] = ACTIONS(1103), + [aux_sym_switch_block_token1] = ACTIONS(1103), + [aux_sym_case_statement_token1] = ACTIONS(1103), + [anon_sym_AT] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_clone] = ACTIONS(1103), + [anon_sym_print] = ACTIONS(1103), + [anon_sym_new] = ACTIONS(1103), + [anon_sym_PLUS_PLUS] = ACTIONS(1101), + [anon_sym_DASH_DASH] = ACTIONS(1101), + [sym_shell_command_expression] = ACTIONS(1101), + [anon_sym_list] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_self] = ACTIONS(1103), + [anon_sym_parent] = ACTIONS(1103), + [anon_sym_POUND_LBRACK] = ACTIONS(1101), + [sym_string] = ACTIONS(1101), + [sym_boolean] = ACTIONS(1103), + [sym_null] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(1101), + [anon_sym_yield] = ACTIONS(1103), + [aux_sym_include_expression_token1] = ACTIONS(1103), + [aux_sym_include_once_expression_token1] = ACTIONS(1103), + [aux_sym_require_expression_token1] = ACTIONS(1103), + [aux_sym_require_once_expression_token1] = ACTIONS(1103), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1080), + [sym_heredoc] = ACTIONS(1101), }, [452] = { [sym_text_interpolation] = STATE(452), - [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_class_modifier_token1] = ACTIONS(1086), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1105), + [sym_name] = ACTIONS(1107), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1105), + [aux_sym_function_static_declaration_token1] = ACTIONS(1107), + [aux_sym_global_declaration_token1] = ACTIONS(1107), + [aux_sym_namespace_definition_token1] = ACTIONS(1107), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1107), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1107), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1107), + [anon_sym_BSLASH] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1105), + [anon_sym_RBRACE] = ACTIONS(1105), + [aux_sym_trait_declaration_token1] = ACTIONS(1107), + [aux_sym_interface_declaration_token1] = ACTIONS(1107), + [aux_sym_class_declaration_token1] = ACTIONS(1107), + [aux_sym_class_modifier_token1] = ACTIONS(1107), + [aux_sym_class_modifier_token2] = ACTIONS(1107), + [aux_sym_visibility_modifier_token1] = ACTIONS(1107), + [aux_sym_visibility_modifier_token2] = ACTIONS(1107), + [aux_sym_visibility_modifier_token3] = ACTIONS(1107), + [aux_sym_arrow_function_token1] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(1105), + [anon_sym_array] = ACTIONS(1107), + [anon_sym_unset] = ACTIONS(1107), + [aux_sym_echo_statement_token1] = ACTIONS(1107), + [anon_sym_declare] = ACTIONS(1107), + [aux_sym_declare_statement_token1] = ACTIONS(1107), + [sym_float] = ACTIONS(1107), + [aux_sym_try_statement_token1] = ACTIONS(1107), + [aux_sym_goto_statement_token1] = ACTIONS(1107), + [aux_sym_continue_statement_token1] = ACTIONS(1107), + [aux_sym_break_statement_token1] = ACTIONS(1107), + [sym_integer] = ACTIONS(1107), + [aux_sym_return_statement_token1] = ACTIONS(1107), + [aux_sym_throw_expression_token1] = ACTIONS(1107), + [aux_sym_while_statement_token1] = ACTIONS(1107), + [aux_sym_while_statement_token2] = ACTIONS(1107), + [aux_sym_do_statement_token1] = ACTIONS(1107), + [aux_sym_for_statement_token1] = ACTIONS(1107), + [aux_sym_for_statement_token2] = ACTIONS(1107), + [aux_sym_foreach_statement_token1] = ACTIONS(1107), + [aux_sym_foreach_statement_token2] = ACTIONS(1107), + [aux_sym_if_statement_token1] = ACTIONS(1107), + [aux_sym_if_statement_token2] = ACTIONS(1107), + [aux_sym_else_if_clause_token1] = ACTIONS(1107), + [aux_sym_else_clause_token1] = ACTIONS(1107), + [aux_sym_match_expression_token1] = ACTIONS(1107), + [aux_sym_match_default_expression_token1] = ACTIONS(1107), + [aux_sym_switch_statement_token1] = ACTIONS(1107), + [aux_sym_switch_block_token1] = ACTIONS(1107), + [aux_sym_case_statement_token1] = ACTIONS(1107), + [anon_sym_AT] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_TILDE] = ACTIONS(1105), + [anon_sym_BANG] = ACTIONS(1105), + [anon_sym_clone] = ACTIONS(1107), + [anon_sym_print] = ACTIONS(1107), + [anon_sym_new] = ACTIONS(1107), + [anon_sym_PLUS_PLUS] = ACTIONS(1105), + [anon_sym_DASH_DASH] = ACTIONS(1105), + [sym_shell_command_expression] = ACTIONS(1105), + [anon_sym_list] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_self] = ACTIONS(1107), + [anon_sym_parent] = ACTIONS(1107), + [anon_sym_POUND_LBRACK] = ACTIONS(1105), + [sym_string] = ACTIONS(1105), + [sym_boolean] = ACTIONS(1107), + [sym_null] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(1105), + [anon_sym_yield] = ACTIONS(1107), + [aux_sym_include_expression_token1] = ACTIONS(1107), + [aux_sym_include_once_expression_token1] = ACTIONS(1107), + [aux_sym_require_expression_token1] = ACTIONS(1107), + [aux_sym_require_once_expression_token1] = ACTIONS(1107), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1084), + [sym_heredoc] = ACTIONS(1105), }, [453] = { [sym_text_interpolation] = STATE(453), - [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_class_modifier_token1] = ACTIONS(1090), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1109), + [sym_name] = ACTIONS(1111), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1109), + [aux_sym_function_static_declaration_token1] = ACTIONS(1111), + [aux_sym_global_declaration_token1] = ACTIONS(1111), + [aux_sym_namespace_definition_token1] = ACTIONS(1111), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1111), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1111), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1111), + [anon_sym_BSLASH] = ACTIONS(1109), + [anon_sym_LBRACE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(1109), + [aux_sym_trait_declaration_token1] = ACTIONS(1111), + [aux_sym_interface_declaration_token1] = ACTIONS(1111), + [aux_sym_class_declaration_token1] = ACTIONS(1111), + [aux_sym_class_modifier_token1] = ACTIONS(1111), + [aux_sym_class_modifier_token2] = ACTIONS(1111), + [aux_sym_visibility_modifier_token1] = ACTIONS(1111), + [aux_sym_visibility_modifier_token2] = ACTIONS(1111), + [aux_sym_visibility_modifier_token3] = ACTIONS(1111), + [aux_sym_arrow_function_token1] = ACTIONS(1111), + [anon_sym_LPAREN] = ACTIONS(1109), + [anon_sym_array] = ACTIONS(1111), + [anon_sym_unset] = ACTIONS(1111), + [aux_sym_echo_statement_token1] = ACTIONS(1111), + [anon_sym_declare] = ACTIONS(1111), + [aux_sym_declare_statement_token1] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [aux_sym_try_statement_token1] = ACTIONS(1111), + [aux_sym_goto_statement_token1] = ACTIONS(1111), + [aux_sym_continue_statement_token1] = ACTIONS(1111), + [aux_sym_break_statement_token1] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [aux_sym_return_statement_token1] = ACTIONS(1111), + [aux_sym_throw_expression_token1] = ACTIONS(1111), + [aux_sym_while_statement_token1] = ACTIONS(1111), + [aux_sym_while_statement_token2] = ACTIONS(1111), + [aux_sym_do_statement_token1] = ACTIONS(1111), + [aux_sym_for_statement_token1] = ACTIONS(1111), + [aux_sym_for_statement_token2] = ACTIONS(1111), + [aux_sym_foreach_statement_token1] = ACTIONS(1111), + [aux_sym_foreach_statement_token2] = ACTIONS(1111), + [aux_sym_if_statement_token1] = ACTIONS(1111), + [aux_sym_if_statement_token2] = ACTIONS(1111), + [aux_sym_else_if_clause_token1] = ACTIONS(1111), + [aux_sym_else_clause_token1] = ACTIONS(1111), + [aux_sym_match_expression_token1] = ACTIONS(1111), + [aux_sym_match_default_expression_token1] = ACTIONS(1111), + [aux_sym_switch_statement_token1] = ACTIONS(1111), + [aux_sym_switch_block_token1] = ACTIONS(1111), + [aux_sym_case_statement_token1] = ACTIONS(1111), + [anon_sym_AT] = ACTIONS(1109), + [anon_sym_PLUS] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_TILDE] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_clone] = ACTIONS(1111), + [anon_sym_print] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1111), + [anon_sym_PLUS_PLUS] = ACTIONS(1109), + [anon_sym_DASH_DASH] = ACTIONS(1109), + [sym_shell_command_expression] = ACTIONS(1109), + [anon_sym_list] = ACTIONS(1111), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_self] = ACTIONS(1111), + [anon_sym_parent] = ACTIONS(1111), + [anon_sym_POUND_LBRACK] = ACTIONS(1109), + [sym_string] = ACTIONS(1109), + [sym_boolean] = ACTIONS(1111), + [sym_null] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(1111), + [aux_sym_include_expression_token1] = ACTIONS(1111), + [aux_sym_include_once_expression_token1] = ACTIONS(1111), + [aux_sym_require_expression_token1] = ACTIONS(1111), + [aux_sym_require_once_expression_token1] = ACTIONS(1111), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1088), + [sym_heredoc] = ACTIONS(1109), }, [454] = { [sym_text_interpolation] = STATE(454), - [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_class_modifier_token1] = ACTIONS(1094), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1093), + [sym_name] = ACTIONS(1095), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1093), + [aux_sym_function_static_declaration_token1] = ACTIONS(1095), + [aux_sym_global_declaration_token1] = ACTIONS(1095), + [aux_sym_namespace_definition_token1] = ACTIONS(1095), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1095), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1095), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1095), + [anon_sym_BSLASH] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [aux_sym_trait_declaration_token1] = ACTIONS(1095), + [aux_sym_interface_declaration_token1] = ACTIONS(1095), + [aux_sym_class_declaration_token1] = ACTIONS(1095), + [aux_sym_class_modifier_token1] = ACTIONS(1095), + [aux_sym_class_modifier_token2] = ACTIONS(1095), + [aux_sym_visibility_modifier_token1] = ACTIONS(1095), + [aux_sym_visibility_modifier_token2] = ACTIONS(1095), + [aux_sym_visibility_modifier_token3] = ACTIONS(1095), + [aux_sym_arrow_function_token1] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_array] = ACTIONS(1095), + [anon_sym_unset] = ACTIONS(1095), + [aux_sym_echo_statement_token1] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [aux_sym_declare_statement_token1] = ACTIONS(1095), + [sym_float] = ACTIONS(1095), + [aux_sym_try_statement_token1] = ACTIONS(1095), + [aux_sym_goto_statement_token1] = ACTIONS(1095), + [aux_sym_continue_statement_token1] = ACTIONS(1095), + [aux_sym_break_statement_token1] = ACTIONS(1095), + [sym_integer] = ACTIONS(1095), + [aux_sym_return_statement_token1] = ACTIONS(1095), + [aux_sym_throw_expression_token1] = ACTIONS(1095), + [aux_sym_while_statement_token1] = ACTIONS(1095), + [aux_sym_while_statement_token2] = ACTIONS(1095), + [aux_sym_do_statement_token1] = ACTIONS(1095), + [aux_sym_for_statement_token1] = ACTIONS(1095), + [aux_sym_for_statement_token2] = ACTIONS(1095), + [aux_sym_foreach_statement_token1] = ACTIONS(1095), + [aux_sym_foreach_statement_token2] = ACTIONS(1095), + [aux_sym_if_statement_token1] = ACTIONS(1095), + [aux_sym_if_statement_token2] = ACTIONS(1095), + [aux_sym_else_if_clause_token1] = ACTIONS(1095), + [aux_sym_else_clause_token1] = ACTIONS(1095), + [aux_sym_match_expression_token1] = ACTIONS(1095), + [aux_sym_match_default_expression_token1] = ACTIONS(1095), + [aux_sym_switch_statement_token1] = ACTIONS(1095), + [aux_sym_switch_block_token1] = ACTIONS(1095), + [aux_sym_case_statement_token1] = ACTIONS(1095), + [anon_sym_AT] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_TILDE] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_clone] = ACTIONS(1095), + [anon_sym_print] = ACTIONS(1095), + [anon_sym_new] = ACTIONS(1095), + [anon_sym_PLUS_PLUS] = ACTIONS(1093), + [anon_sym_DASH_DASH] = ACTIONS(1093), + [sym_shell_command_expression] = ACTIONS(1093), + [anon_sym_list] = ACTIONS(1095), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_self] = ACTIONS(1095), + [anon_sym_parent] = ACTIONS(1095), + [anon_sym_POUND_LBRACK] = ACTIONS(1093), + [sym_string] = ACTIONS(1093), + [sym_boolean] = ACTIONS(1095), + [sym_null] = ACTIONS(1095), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_yield] = ACTIONS(1095), + [aux_sym_include_expression_token1] = ACTIONS(1095), + [aux_sym_include_once_expression_token1] = ACTIONS(1095), + [aux_sym_require_expression_token1] = ACTIONS(1095), + [aux_sym_require_once_expression_token1] = ACTIONS(1095), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1092), + [sym_heredoc] = ACTIONS(1093), }, [455] = { [sym_text_interpolation] = STATE(455), - [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_class_modifier_token1] = ACTIONS(1098), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1113), + [sym_name] = ACTIONS(1115), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1113), + [aux_sym_function_static_declaration_token1] = ACTIONS(1115), + [aux_sym_global_declaration_token1] = ACTIONS(1115), + [aux_sym_namespace_definition_token1] = ACTIONS(1115), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1115), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1115), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1115), + [anon_sym_BSLASH] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_RBRACE] = ACTIONS(1113), + [aux_sym_trait_declaration_token1] = ACTIONS(1115), + [aux_sym_interface_declaration_token1] = ACTIONS(1115), + [aux_sym_class_declaration_token1] = ACTIONS(1115), + [aux_sym_class_modifier_token1] = ACTIONS(1115), + [aux_sym_class_modifier_token2] = ACTIONS(1115), + [aux_sym_visibility_modifier_token1] = ACTIONS(1115), + [aux_sym_visibility_modifier_token2] = ACTIONS(1115), + [aux_sym_visibility_modifier_token3] = ACTIONS(1115), + [aux_sym_arrow_function_token1] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1113), + [anon_sym_array] = ACTIONS(1115), + [anon_sym_unset] = ACTIONS(1115), + [aux_sym_echo_statement_token1] = ACTIONS(1115), + [anon_sym_declare] = ACTIONS(1115), + [aux_sym_declare_statement_token1] = ACTIONS(1115), + [sym_float] = ACTIONS(1115), + [aux_sym_try_statement_token1] = ACTIONS(1115), + [aux_sym_goto_statement_token1] = ACTIONS(1115), + [aux_sym_continue_statement_token1] = ACTIONS(1115), + [aux_sym_break_statement_token1] = ACTIONS(1115), + [sym_integer] = ACTIONS(1115), + [aux_sym_return_statement_token1] = ACTIONS(1115), + [aux_sym_throw_expression_token1] = ACTIONS(1115), + [aux_sym_while_statement_token1] = ACTIONS(1115), + [aux_sym_while_statement_token2] = ACTIONS(1115), + [aux_sym_do_statement_token1] = ACTIONS(1115), + [aux_sym_for_statement_token1] = ACTIONS(1115), + [aux_sym_for_statement_token2] = ACTIONS(1115), + [aux_sym_foreach_statement_token1] = ACTIONS(1115), + [aux_sym_foreach_statement_token2] = ACTIONS(1115), + [aux_sym_if_statement_token1] = ACTIONS(1115), + [aux_sym_if_statement_token2] = ACTIONS(1115), + [aux_sym_else_if_clause_token1] = ACTIONS(1115), + [aux_sym_else_clause_token1] = ACTIONS(1115), + [aux_sym_match_expression_token1] = ACTIONS(1115), + [aux_sym_match_default_expression_token1] = ACTIONS(1115), + [aux_sym_switch_statement_token1] = ACTIONS(1115), + [aux_sym_switch_block_token1] = ACTIONS(1115), + [aux_sym_case_statement_token1] = ACTIONS(1115), + [anon_sym_AT] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_clone] = ACTIONS(1115), + [anon_sym_print] = ACTIONS(1115), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_PLUS_PLUS] = ACTIONS(1113), + [anon_sym_DASH_DASH] = ACTIONS(1113), + [sym_shell_command_expression] = ACTIONS(1113), + [anon_sym_list] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1113), + [anon_sym_self] = ACTIONS(1115), + [anon_sym_parent] = ACTIONS(1115), + [anon_sym_POUND_LBRACK] = ACTIONS(1113), + [sym_string] = ACTIONS(1113), + [sym_boolean] = ACTIONS(1115), + [sym_null] = ACTIONS(1115), + [anon_sym_DOLLAR] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1115), + [aux_sym_include_expression_token1] = ACTIONS(1115), + [aux_sym_include_once_expression_token1] = ACTIONS(1115), + [aux_sym_require_expression_token1] = ACTIONS(1115), + [aux_sym_require_once_expression_token1] = ACTIONS(1115), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1096), + [sym_heredoc] = ACTIONS(1113), }, [456] = { [sym_text_interpolation] = STATE(456), - [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_class_modifier_token1] = ACTIONS(1102), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1117), + [sym_name] = ACTIONS(1119), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1117), + [aux_sym_function_static_declaration_token1] = ACTIONS(1119), + [aux_sym_global_declaration_token1] = ACTIONS(1119), + [aux_sym_namespace_definition_token1] = ACTIONS(1119), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1119), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1119), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1119), + [anon_sym_BSLASH] = ACTIONS(1117), + [anon_sym_LBRACE] = ACTIONS(1117), + [anon_sym_RBRACE] = ACTIONS(1117), + [aux_sym_trait_declaration_token1] = ACTIONS(1119), + [aux_sym_interface_declaration_token1] = ACTIONS(1119), + [aux_sym_class_declaration_token1] = ACTIONS(1119), + [aux_sym_class_modifier_token1] = ACTIONS(1119), + [aux_sym_class_modifier_token2] = ACTIONS(1119), + [aux_sym_visibility_modifier_token1] = ACTIONS(1119), + [aux_sym_visibility_modifier_token2] = ACTIONS(1119), + [aux_sym_visibility_modifier_token3] = ACTIONS(1119), + [aux_sym_arrow_function_token1] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1117), + [anon_sym_array] = ACTIONS(1119), + [anon_sym_unset] = ACTIONS(1119), + [aux_sym_echo_statement_token1] = ACTIONS(1119), + [anon_sym_declare] = ACTIONS(1119), + [aux_sym_declare_statement_token1] = ACTIONS(1119), + [sym_float] = ACTIONS(1119), + [aux_sym_try_statement_token1] = ACTIONS(1119), + [aux_sym_goto_statement_token1] = ACTIONS(1119), + [aux_sym_continue_statement_token1] = ACTIONS(1119), + [aux_sym_break_statement_token1] = ACTIONS(1119), + [sym_integer] = ACTIONS(1119), + [aux_sym_return_statement_token1] = ACTIONS(1119), + [aux_sym_throw_expression_token1] = ACTIONS(1119), + [aux_sym_while_statement_token1] = ACTIONS(1119), + [aux_sym_while_statement_token2] = ACTIONS(1119), + [aux_sym_do_statement_token1] = ACTIONS(1119), + [aux_sym_for_statement_token1] = ACTIONS(1119), + [aux_sym_for_statement_token2] = ACTIONS(1119), + [aux_sym_foreach_statement_token1] = ACTIONS(1119), + [aux_sym_foreach_statement_token2] = ACTIONS(1119), + [aux_sym_if_statement_token1] = ACTIONS(1119), + [aux_sym_if_statement_token2] = ACTIONS(1119), + [aux_sym_else_if_clause_token1] = ACTIONS(1119), + [aux_sym_else_clause_token1] = ACTIONS(1119), + [aux_sym_match_expression_token1] = ACTIONS(1119), + [aux_sym_match_default_expression_token1] = ACTIONS(1119), + [aux_sym_switch_statement_token1] = ACTIONS(1119), + [aux_sym_switch_block_token1] = ACTIONS(1119), + [aux_sym_case_statement_token1] = ACTIONS(1119), + [anon_sym_AT] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_clone] = ACTIONS(1119), + [anon_sym_print] = ACTIONS(1119), + [anon_sym_new] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1117), + [anon_sym_DASH_DASH] = ACTIONS(1117), + [sym_shell_command_expression] = ACTIONS(1117), + [anon_sym_list] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(1117), + [anon_sym_self] = ACTIONS(1119), + [anon_sym_parent] = ACTIONS(1119), + [anon_sym_POUND_LBRACK] = ACTIONS(1117), + [sym_string] = ACTIONS(1117), + [sym_boolean] = ACTIONS(1119), + [sym_null] = ACTIONS(1119), + [anon_sym_DOLLAR] = ACTIONS(1117), + [anon_sym_yield] = ACTIONS(1119), + [aux_sym_include_expression_token1] = ACTIONS(1119), + [aux_sym_include_once_expression_token1] = ACTIONS(1119), + [aux_sym_require_expression_token1] = ACTIONS(1119), + [aux_sym_require_once_expression_token1] = ACTIONS(1119), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1100), + [sym_heredoc] = ACTIONS(1117), }, [457] = { [sym_text_interpolation] = STATE(457), - [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_class_modifier_token1] = ACTIONS(1106), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1121), + [sym_name] = ACTIONS(1123), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1121), + [aux_sym_function_static_declaration_token1] = ACTIONS(1123), + [aux_sym_global_declaration_token1] = ACTIONS(1123), + [aux_sym_namespace_definition_token1] = ACTIONS(1123), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1123), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1123), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1123), + [anon_sym_BSLASH] = ACTIONS(1121), + [anon_sym_LBRACE] = ACTIONS(1121), + [anon_sym_RBRACE] = ACTIONS(1121), + [aux_sym_trait_declaration_token1] = ACTIONS(1123), + [aux_sym_interface_declaration_token1] = ACTIONS(1123), + [aux_sym_class_declaration_token1] = ACTIONS(1123), + [aux_sym_class_modifier_token1] = ACTIONS(1123), + [aux_sym_class_modifier_token2] = ACTIONS(1123), + [aux_sym_visibility_modifier_token1] = ACTIONS(1123), + [aux_sym_visibility_modifier_token2] = ACTIONS(1123), + [aux_sym_visibility_modifier_token3] = ACTIONS(1123), + [aux_sym_arrow_function_token1] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_array] = ACTIONS(1123), + [anon_sym_unset] = ACTIONS(1123), + [aux_sym_echo_statement_token1] = ACTIONS(1123), + [anon_sym_declare] = ACTIONS(1123), + [aux_sym_declare_statement_token1] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [aux_sym_try_statement_token1] = ACTIONS(1123), + [aux_sym_goto_statement_token1] = ACTIONS(1123), + [aux_sym_continue_statement_token1] = ACTIONS(1123), + [aux_sym_break_statement_token1] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [aux_sym_return_statement_token1] = ACTIONS(1123), + [aux_sym_throw_expression_token1] = ACTIONS(1123), + [aux_sym_while_statement_token1] = ACTIONS(1123), + [aux_sym_while_statement_token2] = ACTIONS(1123), + [aux_sym_do_statement_token1] = ACTIONS(1123), + [aux_sym_for_statement_token1] = ACTIONS(1123), + [aux_sym_for_statement_token2] = ACTIONS(1123), + [aux_sym_foreach_statement_token1] = ACTIONS(1123), + [aux_sym_foreach_statement_token2] = ACTIONS(1123), + [aux_sym_if_statement_token1] = ACTIONS(1123), + [aux_sym_if_statement_token2] = ACTIONS(1123), + [aux_sym_else_if_clause_token1] = ACTIONS(1123), + [aux_sym_else_clause_token1] = ACTIONS(1123), + [aux_sym_match_expression_token1] = ACTIONS(1123), + [aux_sym_match_default_expression_token1] = ACTIONS(1123), + [aux_sym_switch_statement_token1] = ACTIONS(1123), + [aux_sym_switch_block_token1] = ACTIONS(1123), + [aux_sym_case_statement_token1] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_TILDE] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_clone] = ACTIONS(1123), + [anon_sym_print] = ACTIONS(1123), + [anon_sym_new] = ACTIONS(1123), + [anon_sym_PLUS_PLUS] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1121), + [sym_shell_command_expression] = ACTIONS(1121), + [anon_sym_list] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1121), + [anon_sym_self] = ACTIONS(1123), + [anon_sym_parent] = ACTIONS(1123), + [anon_sym_POUND_LBRACK] = ACTIONS(1121), + [sym_string] = ACTIONS(1121), + [sym_boolean] = ACTIONS(1123), + [sym_null] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(1121), + [anon_sym_yield] = ACTIONS(1123), + [aux_sym_include_expression_token1] = ACTIONS(1123), + [aux_sym_include_once_expression_token1] = ACTIONS(1123), + [aux_sym_require_expression_token1] = ACTIONS(1123), + [aux_sym_require_once_expression_token1] = ACTIONS(1123), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1104), + [sym_heredoc] = ACTIONS(1121), }, [458] = { [sym_text_interpolation] = STATE(458), - [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_class_modifier_token1] = ACTIONS(1110), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_name] = ACTIONS(1127), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1125), + [aux_sym_function_static_declaration_token1] = ACTIONS(1127), + [aux_sym_global_declaration_token1] = ACTIONS(1127), + [aux_sym_namespace_definition_token1] = ACTIONS(1127), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1127), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1127), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1127), + [anon_sym_BSLASH] = ACTIONS(1125), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [aux_sym_trait_declaration_token1] = ACTIONS(1127), + [aux_sym_interface_declaration_token1] = ACTIONS(1127), + [aux_sym_class_declaration_token1] = ACTIONS(1127), + [aux_sym_class_modifier_token1] = ACTIONS(1127), + [aux_sym_class_modifier_token2] = ACTIONS(1127), + [aux_sym_visibility_modifier_token1] = ACTIONS(1127), + [aux_sym_visibility_modifier_token2] = ACTIONS(1127), + [aux_sym_visibility_modifier_token3] = ACTIONS(1127), + [aux_sym_arrow_function_token1] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_array] = ACTIONS(1127), + [anon_sym_unset] = ACTIONS(1127), + [aux_sym_echo_statement_token1] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [aux_sym_declare_statement_token1] = ACTIONS(1127), + [sym_float] = ACTIONS(1127), + [aux_sym_try_statement_token1] = ACTIONS(1127), + [aux_sym_goto_statement_token1] = ACTIONS(1127), + [aux_sym_continue_statement_token1] = ACTIONS(1127), + [aux_sym_break_statement_token1] = ACTIONS(1127), + [sym_integer] = ACTIONS(1127), + [aux_sym_return_statement_token1] = ACTIONS(1127), + [aux_sym_throw_expression_token1] = ACTIONS(1127), + [aux_sym_while_statement_token1] = ACTIONS(1127), + [aux_sym_while_statement_token2] = ACTIONS(1127), + [aux_sym_do_statement_token1] = ACTIONS(1127), + [aux_sym_for_statement_token1] = ACTIONS(1127), + [aux_sym_for_statement_token2] = ACTIONS(1127), + [aux_sym_foreach_statement_token1] = ACTIONS(1127), + [aux_sym_foreach_statement_token2] = ACTIONS(1127), + [aux_sym_if_statement_token1] = ACTIONS(1127), + [aux_sym_if_statement_token2] = ACTIONS(1127), + [aux_sym_else_if_clause_token1] = ACTIONS(1127), + [aux_sym_else_clause_token1] = ACTIONS(1127), + [aux_sym_match_expression_token1] = ACTIONS(1127), + [aux_sym_match_default_expression_token1] = ACTIONS(1127), + [aux_sym_switch_statement_token1] = ACTIONS(1127), + [aux_sym_switch_block_token1] = ACTIONS(1127), + [aux_sym_case_statement_token1] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_clone] = ACTIONS(1127), + [anon_sym_print] = ACTIONS(1127), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [sym_shell_command_expression] = ACTIONS(1125), + [anon_sym_list] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1125), + [anon_sym_self] = ACTIONS(1127), + [anon_sym_parent] = ACTIONS(1127), + [anon_sym_POUND_LBRACK] = ACTIONS(1125), + [sym_string] = ACTIONS(1125), + [sym_boolean] = ACTIONS(1127), + [sym_null] = ACTIONS(1127), + [anon_sym_DOLLAR] = ACTIONS(1125), + [anon_sym_yield] = ACTIONS(1127), + [aux_sym_include_expression_token1] = ACTIONS(1127), + [aux_sym_include_once_expression_token1] = ACTIONS(1127), + [aux_sym_require_expression_token1] = ACTIONS(1127), + [aux_sym_require_once_expression_token1] = ACTIONS(1127), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1108), + [sym_heredoc] = ACTIONS(1125), }, [459] = { [sym_text_interpolation] = STATE(459), - [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_class_modifier_token1] = ACTIONS(1114), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1125), + [sym_name] = ACTIONS(1127), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1125), + [aux_sym_function_static_declaration_token1] = ACTIONS(1127), + [aux_sym_global_declaration_token1] = ACTIONS(1127), + [aux_sym_namespace_definition_token1] = ACTIONS(1127), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1127), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1127), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1127), + [anon_sym_BSLASH] = ACTIONS(1125), + [anon_sym_LBRACE] = ACTIONS(1125), + [anon_sym_RBRACE] = ACTIONS(1125), + [aux_sym_trait_declaration_token1] = ACTIONS(1127), + [aux_sym_interface_declaration_token1] = ACTIONS(1127), + [aux_sym_class_declaration_token1] = ACTIONS(1127), + [aux_sym_class_modifier_token1] = ACTIONS(1127), + [aux_sym_class_modifier_token2] = ACTIONS(1127), + [aux_sym_visibility_modifier_token1] = ACTIONS(1127), + [aux_sym_visibility_modifier_token2] = ACTIONS(1127), + [aux_sym_visibility_modifier_token3] = ACTIONS(1127), + [aux_sym_arrow_function_token1] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_array] = ACTIONS(1127), + [anon_sym_unset] = ACTIONS(1127), + [aux_sym_echo_statement_token1] = ACTIONS(1127), + [anon_sym_declare] = ACTIONS(1127), + [aux_sym_declare_statement_token1] = ACTIONS(1127), + [sym_float] = ACTIONS(1127), + [aux_sym_try_statement_token1] = ACTIONS(1127), + [aux_sym_goto_statement_token1] = ACTIONS(1127), + [aux_sym_continue_statement_token1] = ACTIONS(1127), + [aux_sym_break_statement_token1] = ACTIONS(1127), + [sym_integer] = ACTIONS(1127), + [aux_sym_return_statement_token1] = ACTIONS(1127), + [aux_sym_throw_expression_token1] = ACTIONS(1127), + [aux_sym_while_statement_token1] = ACTIONS(1127), + [aux_sym_while_statement_token2] = ACTIONS(1127), + [aux_sym_do_statement_token1] = ACTIONS(1127), + [aux_sym_for_statement_token1] = ACTIONS(1127), + [aux_sym_for_statement_token2] = ACTIONS(1127), + [aux_sym_foreach_statement_token1] = ACTIONS(1127), + [aux_sym_foreach_statement_token2] = ACTIONS(1127), + [aux_sym_if_statement_token1] = ACTIONS(1127), + [aux_sym_if_statement_token2] = ACTIONS(1127), + [aux_sym_else_if_clause_token1] = ACTIONS(1127), + [aux_sym_else_clause_token1] = ACTIONS(1127), + [aux_sym_match_expression_token1] = ACTIONS(1127), + [aux_sym_match_default_expression_token1] = ACTIONS(1127), + [aux_sym_switch_statement_token1] = ACTIONS(1127), + [aux_sym_switch_block_token1] = ACTIONS(1127), + [aux_sym_case_statement_token1] = ACTIONS(1127), + [anon_sym_AT] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1125), + [anon_sym_clone] = ACTIONS(1127), + [anon_sym_print] = ACTIONS(1127), + [anon_sym_new] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(1125), + [anon_sym_DASH_DASH] = ACTIONS(1125), + [sym_shell_command_expression] = ACTIONS(1125), + [anon_sym_list] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1125), + [anon_sym_self] = ACTIONS(1127), + [anon_sym_parent] = ACTIONS(1127), + [anon_sym_POUND_LBRACK] = ACTIONS(1125), + [sym_string] = ACTIONS(1125), + [sym_boolean] = ACTIONS(1127), + [sym_null] = ACTIONS(1127), + [anon_sym_DOLLAR] = ACTIONS(1125), + [anon_sym_yield] = ACTIONS(1127), + [aux_sym_include_expression_token1] = ACTIONS(1127), + [aux_sym_include_once_expression_token1] = ACTIONS(1127), + [aux_sym_require_expression_token1] = ACTIONS(1127), + [aux_sym_require_once_expression_token1] = ACTIONS(1127), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1112), + [sym_heredoc] = ACTIONS(1125), }, [460] = { [sym_text_interpolation] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(976), - [sym_name] = ACTIONS(978), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(976), - [aux_sym_function_static_declaration_token1] = ACTIONS(978), - [aux_sym_global_declaration_token1] = ACTIONS(978), - [aux_sym_namespace_definition_token1] = ACTIONS(978), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(978), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(978), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(978), - [anon_sym_BSLASH] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [aux_sym_trait_declaration_token1] = ACTIONS(978), - [aux_sym_interface_declaration_token1] = ACTIONS(978), - [aux_sym_class_declaration_token1] = ACTIONS(978), - [aux_sym_class_modifier_token1] = ACTIONS(978), - [aux_sym_class_modifier_token2] = ACTIONS(978), - [aux_sym_visibility_modifier_token1] = ACTIONS(978), - [aux_sym_visibility_modifier_token2] = ACTIONS(978), - [aux_sym_visibility_modifier_token3] = ACTIONS(978), - [aux_sym_arrow_function_token1] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_array] = ACTIONS(978), - [anon_sym_unset] = ACTIONS(978), - [aux_sym_echo_statement_token1] = ACTIONS(978), - [anon_sym_declare] = ACTIONS(978), - [aux_sym_declare_statement_token1] = ACTIONS(978), - [sym_float] = ACTIONS(978), - [aux_sym_try_statement_token1] = ACTIONS(978), - [aux_sym_goto_statement_token1] = ACTIONS(978), - [aux_sym_continue_statement_token1] = ACTIONS(978), - [aux_sym_break_statement_token1] = ACTIONS(978), - [sym_integer] = ACTIONS(978), - [aux_sym_return_statement_token1] = ACTIONS(978), - [aux_sym_throw_expression_token1] = ACTIONS(978), - [aux_sym_while_statement_token1] = ACTIONS(978), - [aux_sym_while_statement_token2] = ACTIONS(978), - [aux_sym_do_statement_token1] = ACTIONS(978), - [aux_sym_for_statement_token1] = ACTIONS(978), - [aux_sym_for_statement_token2] = ACTIONS(978), - [aux_sym_foreach_statement_token1] = ACTIONS(978), - [aux_sym_foreach_statement_token2] = ACTIONS(978), - [aux_sym_if_statement_token1] = ACTIONS(978), - [aux_sym_if_statement_token2] = ACTIONS(978), - [aux_sym_else_if_clause_token1] = ACTIONS(978), - [aux_sym_else_clause_token1] = ACTIONS(978), - [aux_sym_match_expression_token1] = ACTIONS(978), - [aux_sym_match_default_expression_token1] = ACTIONS(978), - [aux_sym_switch_statement_token1] = ACTIONS(978), - [aux_sym_switch_block_token1] = ACTIONS(978), - [aux_sym_case_statement_token1] = ACTIONS(978), - [anon_sym_AT] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_clone] = ACTIONS(978), - [anon_sym_print] = ACTIONS(978), - [anon_sym_new] = ACTIONS(978), - [anon_sym_PLUS_PLUS] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(976), - [sym_shell_command_expression] = ACTIONS(976), - [anon_sym_list] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_self] = ACTIONS(978), - [anon_sym_parent] = ACTIONS(978), - [sym_string] = ACTIONS(976), - [sym_boolean] = ACTIONS(978), - [sym_null] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_yield] = ACTIONS(978), - [aux_sym_include_expression_token1] = ACTIONS(978), - [aux_sym_include_once_expression_token1] = ACTIONS(978), - [aux_sym_require_expression_token1] = ACTIONS(978), - [aux_sym_require_once_expression_token1] = ACTIONS(978), + [ts_builtin_sym_end] = ACTIONS(1129), + [sym_name] = ACTIONS(1131), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1129), + [aux_sym_function_static_declaration_token1] = ACTIONS(1131), + [aux_sym_global_declaration_token1] = ACTIONS(1131), + [aux_sym_namespace_definition_token1] = ACTIONS(1131), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1131), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1131), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1131), + [anon_sym_BSLASH] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [aux_sym_trait_declaration_token1] = ACTIONS(1131), + [aux_sym_interface_declaration_token1] = ACTIONS(1131), + [aux_sym_class_declaration_token1] = ACTIONS(1131), + [aux_sym_class_modifier_token1] = ACTIONS(1131), + [aux_sym_class_modifier_token2] = ACTIONS(1131), + [aux_sym_visibility_modifier_token1] = ACTIONS(1131), + [aux_sym_visibility_modifier_token2] = ACTIONS(1131), + [aux_sym_visibility_modifier_token3] = ACTIONS(1131), + [aux_sym_arrow_function_token1] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_array] = ACTIONS(1131), + [anon_sym_unset] = ACTIONS(1131), + [aux_sym_echo_statement_token1] = ACTIONS(1131), + [anon_sym_declare] = ACTIONS(1131), + [aux_sym_declare_statement_token1] = ACTIONS(1131), + [sym_float] = ACTIONS(1131), + [aux_sym_try_statement_token1] = ACTIONS(1131), + [aux_sym_goto_statement_token1] = ACTIONS(1131), + [aux_sym_continue_statement_token1] = ACTIONS(1131), + [aux_sym_break_statement_token1] = ACTIONS(1131), + [sym_integer] = ACTIONS(1131), + [aux_sym_return_statement_token1] = ACTIONS(1131), + [aux_sym_throw_expression_token1] = ACTIONS(1131), + [aux_sym_while_statement_token1] = ACTIONS(1131), + [aux_sym_while_statement_token2] = ACTIONS(1131), + [aux_sym_do_statement_token1] = ACTIONS(1131), + [aux_sym_for_statement_token1] = ACTIONS(1131), + [aux_sym_for_statement_token2] = ACTIONS(1131), + [aux_sym_foreach_statement_token1] = ACTIONS(1131), + [aux_sym_foreach_statement_token2] = ACTIONS(1131), + [aux_sym_if_statement_token1] = ACTIONS(1131), + [aux_sym_if_statement_token2] = ACTIONS(1131), + [aux_sym_else_if_clause_token1] = ACTIONS(1131), + [aux_sym_else_clause_token1] = ACTIONS(1131), + [aux_sym_match_expression_token1] = ACTIONS(1131), + [aux_sym_match_default_expression_token1] = ACTIONS(1131), + [aux_sym_switch_statement_token1] = ACTIONS(1131), + [aux_sym_switch_block_token1] = ACTIONS(1131), + [aux_sym_case_statement_token1] = ACTIONS(1131), + [anon_sym_AT] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_clone] = ACTIONS(1131), + [anon_sym_print] = ACTIONS(1131), + [anon_sym_new] = ACTIONS(1131), + [anon_sym_PLUS_PLUS] = ACTIONS(1129), + [anon_sym_DASH_DASH] = ACTIONS(1129), + [sym_shell_command_expression] = ACTIONS(1129), + [anon_sym_list] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_self] = ACTIONS(1131), + [anon_sym_parent] = ACTIONS(1131), + [anon_sym_POUND_LBRACK] = ACTIONS(1129), + [sym_string] = ACTIONS(1129), + [sym_boolean] = ACTIONS(1131), + [sym_null] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_yield] = ACTIONS(1131), + [aux_sym_include_expression_token1] = ACTIONS(1131), + [aux_sym_include_once_expression_token1] = ACTIONS(1131), + [aux_sym_require_expression_token1] = ACTIONS(1131), + [aux_sym_require_once_expression_token1] = ACTIONS(1131), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(976), + [sym_heredoc] = ACTIONS(1129), }, [461] = { [sym_text_interpolation] = STATE(461), - [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_class_modifier_token1] = ACTIONS(1118), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_name] = ACTIONS(1135), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1133), + [aux_sym_function_static_declaration_token1] = ACTIONS(1135), + [aux_sym_global_declaration_token1] = ACTIONS(1135), + [aux_sym_namespace_definition_token1] = ACTIONS(1135), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1135), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1135), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1135), + [anon_sym_BSLASH] = ACTIONS(1133), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [aux_sym_trait_declaration_token1] = ACTIONS(1135), + [aux_sym_interface_declaration_token1] = ACTIONS(1135), + [aux_sym_class_declaration_token1] = ACTIONS(1135), + [aux_sym_class_modifier_token1] = ACTIONS(1135), + [aux_sym_class_modifier_token2] = ACTIONS(1135), + [aux_sym_visibility_modifier_token1] = ACTIONS(1135), + [aux_sym_visibility_modifier_token2] = ACTIONS(1135), + [aux_sym_visibility_modifier_token3] = ACTIONS(1135), + [aux_sym_arrow_function_token1] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_array] = ACTIONS(1135), + [anon_sym_unset] = ACTIONS(1135), + [aux_sym_echo_statement_token1] = ACTIONS(1135), + [anon_sym_declare] = ACTIONS(1135), + [aux_sym_declare_statement_token1] = ACTIONS(1135), + [sym_float] = ACTIONS(1135), + [aux_sym_try_statement_token1] = ACTIONS(1135), + [aux_sym_goto_statement_token1] = ACTIONS(1135), + [aux_sym_continue_statement_token1] = ACTIONS(1135), + [aux_sym_break_statement_token1] = ACTIONS(1135), + [sym_integer] = ACTIONS(1135), + [aux_sym_return_statement_token1] = ACTIONS(1135), + [aux_sym_throw_expression_token1] = ACTIONS(1135), + [aux_sym_while_statement_token1] = ACTIONS(1135), + [aux_sym_while_statement_token2] = ACTIONS(1135), + [aux_sym_do_statement_token1] = ACTIONS(1135), + [aux_sym_for_statement_token1] = ACTIONS(1135), + [aux_sym_for_statement_token2] = ACTIONS(1135), + [aux_sym_foreach_statement_token1] = ACTIONS(1135), + [aux_sym_foreach_statement_token2] = ACTIONS(1135), + [aux_sym_if_statement_token1] = ACTIONS(1135), + [aux_sym_if_statement_token2] = ACTIONS(1135), + [aux_sym_else_if_clause_token1] = ACTIONS(1135), + [aux_sym_else_clause_token1] = ACTIONS(1135), + [aux_sym_match_expression_token1] = ACTIONS(1135), + [aux_sym_match_default_expression_token1] = ACTIONS(1135), + [aux_sym_switch_statement_token1] = ACTIONS(1135), + [aux_sym_switch_block_token1] = ACTIONS(1135), + [aux_sym_case_statement_token1] = ACTIONS(1135), + [anon_sym_AT] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_clone] = ACTIONS(1135), + [anon_sym_print] = ACTIONS(1135), + [anon_sym_new] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(1133), + [anon_sym_DASH_DASH] = ACTIONS(1133), + [sym_shell_command_expression] = ACTIONS(1133), + [anon_sym_list] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_self] = ACTIONS(1135), + [anon_sym_parent] = ACTIONS(1135), + [anon_sym_POUND_LBRACK] = ACTIONS(1133), + [sym_string] = ACTIONS(1133), + [sym_boolean] = ACTIONS(1135), + [sym_null] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [aux_sym_include_expression_token1] = ACTIONS(1135), + [aux_sym_include_once_expression_token1] = ACTIONS(1135), + [aux_sym_require_expression_token1] = ACTIONS(1135), + [aux_sym_require_once_expression_token1] = ACTIONS(1135), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1116), + [sym_heredoc] = ACTIONS(1133), }, [462] = { [sym_text_interpolation] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(972), - [sym_name] = ACTIONS(974), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(972), - [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_class_modifier_token1] = ACTIONS(974), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1137), + [sym_name] = ACTIONS(1139), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1137), + [aux_sym_function_static_declaration_token1] = ACTIONS(1139), + [aux_sym_global_declaration_token1] = ACTIONS(1139), + [aux_sym_namespace_definition_token1] = ACTIONS(1139), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1139), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1139), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1139), + [anon_sym_BSLASH] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_RBRACE] = ACTIONS(1137), + [aux_sym_trait_declaration_token1] = ACTIONS(1139), + [aux_sym_interface_declaration_token1] = ACTIONS(1139), + [aux_sym_class_declaration_token1] = ACTIONS(1139), + [aux_sym_class_modifier_token1] = ACTIONS(1139), + [aux_sym_class_modifier_token2] = ACTIONS(1139), + [aux_sym_visibility_modifier_token1] = ACTIONS(1139), + [aux_sym_visibility_modifier_token2] = ACTIONS(1139), + [aux_sym_visibility_modifier_token3] = ACTIONS(1139), + [aux_sym_arrow_function_token1] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_array] = ACTIONS(1139), + [anon_sym_unset] = ACTIONS(1139), + [aux_sym_echo_statement_token1] = ACTIONS(1139), + [anon_sym_declare] = ACTIONS(1139), + [aux_sym_declare_statement_token1] = ACTIONS(1139), + [sym_float] = ACTIONS(1139), + [aux_sym_try_statement_token1] = ACTIONS(1139), + [aux_sym_goto_statement_token1] = ACTIONS(1139), + [aux_sym_continue_statement_token1] = ACTIONS(1139), + [aux_sym_break_statement_token1] = ACTIONS(1139), + [sym_integer] = ACTIONS(1139), + [aux_sym_return_statement_token1] = ACTIONS(1139), + [aux_sym_throw_expression_token1] = ACTIONS(1139), + [aux_sym_while_statement_token1] = ACTIONS(1139), + [aux_sym_while_statement_token2] = ACTIONS(1139), + [aux_sym_do_statement_token1] = ACTIONS(1139), + [aux_sym_for_statement_token1] = ACTIONS(1139), + [aux_sym_for_statement_token2] = ACTIONS(1139), + [aux_sym_foreach_statement_token1] = ACTIONS(1139), + [aux_sym_foreach_statement_token2] = ACTIONS(1139), + [aux_sym_if_statement_token1] = ACTIONS(1139), + [aux_sym_if_statement_token2] = ACTIONS(1139), + [aux_sym_else_if_clause_token1] = ACTIONS(1139), + [aux_sym_else_clause_token1] = ACTIONS(1139), + [aux_sym_match_expression_token1] = ACTIONS(1139), + [aux_sym_match_default_expression_token1] = ACTIONS(1139), + [aux_sym_switch_statement_token1] = ACTIONS(1139), + [aux_sym_switch_block_token1] = ACTIONS(1139), + [aux_sym_case_statement_token1] = ACTIONS(1139), + [anon_sym_AT] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(1137), + [anon_sym_clone] = ACTIONS(1139), + [anon_sym_print] = ACTIONS(1139), + [anon_sym_new] = ACTIONS(1139), + [anon_sym_PLUS_PLUS] = ACTIONS(1137), + [anon_sym_DASH_DASH] = ACTIONS(1137), + [sym_shell_command_expression] = ACTIONS(1137), + [anon_sym_list] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_self] = ACTIONS(1139), + [anon_sym_parent] = ACTIONS(1139), + [anon_sym_POUND_LBRACK] = ACTIONS(1137), + [sym_string] = ACTIONS(1137), + [sym_boolean] = ACTIONS(1139), + [sym_null] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1137), + [anon_sym_yield] = ACTIONS(1139), + [aux_sym_include_expression_token1] = ACTIONS(1139), + [aux_sym_include_once_expression_token1] = ACTIONS(1139), + [aux_sym_require_expression_token1] = ACTIONS(1139), + [aux_sym_require_once_expression_token1] = ACTIONS(1139), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(972), + [sym_heredoc] = ACTIONS(1137), }, [463] = { [sym_text_interpolation] = STATE(463), - [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_class_modifier_token1] = ACTIONS(1122), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1141), + [sym_name] = ACTIONS(1143), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1141), + [aux_sym_function_static_declaration_token1] = ACTIONS(1143), + [aux_sym_global_declaration_token1] = ACTIONS(1143), + [aux_sym_namespace_definition_token1] = ACTIONS(1143), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1143), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1143), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1143), + [anon_sym_BSLASH] = ACTIONS(1141), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_RBRACE] = ACTIONS(1141), + [aux_sym_trait_declaration_token1] = ACTIONS(1143), + [aux_sym_interface_declaration_token1] = ACTIONS(1143), + [aux_sym_class_declaration_token1] = ACTIONS(1143), + [aux_sym_class_modifier_token1] = ACTIONS(1143), + [aux_sym_class_modifier_token2] = ACTIONS(1143), + [aux_sym_visibility_modifier_token1] = ACTIONS(1143), + [aux_sym_visibility_modifier_token2] = ACTIONS(1143), + [aux_sym_visibility_modifier_token3] = ACTIONS(1143), + [aux_sym_arrow_function_token1] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_array] = ACTIONS(1143), + [anon_sym_unset] = ACTIONS(1143), + [aux_sym_echo_statement_token1] = ACTIONS(1143), + [anon_sym_declare] = ACTIONS(1143), + [aux_sym_declare_statement_token1] = ACTIONS(1143), + [sym_float] = ACTIONS(1143), + [aux_sym_try_statement_token1] = ACTIONS(1143), + [aux_sym_goto_statement_token1] = ACTIONS(1143), + [aux_sym_continue_statement_token1] = ACTIONS(1143), + [aux_sym_break_statement_token1] = ACTIONS(1143), + [sym_integer] = ACTIONS(1143), + [aux_sym_return_statement_token1] = ACTIONS(1143), + [aux_sym_throw_expression_token1] = ACTIONS(1143), + [aux_sym_while_statement_token1] = ACTIONS(1143), + [aux_sym_while_statement_token2] = ACTIONS(1143), + [aux_sym_do_statement_token1] = ACTIONS(1143), + [aux_sym_for_statement_token1] = ACTIONS(1143), + [aux_sym_for_statement_token2] = ACTIONS(1143), + [aux_sym_foreach_statement_token1] = ACTIONS(1143), + [aux_sym_foreach_statement_token2] = ACTIONS(1143), + [aux_sym_if_statement_token1] = ACTIONS(1143), + [aux_sym_if_statement_token2] = ACTIONS(1143), + [aux_sym_else_if_clause_token1] = ACTIONS(1143), + [aux_sym_else_clause_token1] = ACTIONS(1143), + [aux_sym_match_expression_token1] = ACTIONS(1143), + [aux_sym_match_default_expression_token1] = ACTIONS(1143), + [aux_sym_switch_statement_token1] = ACTIONS(1143), + [aux_sym_switch_block_token1] = ACTIONS(1143), + [aux_sym_case_statement_token1] = ACTIONS(1143), + [anon_sym_AT] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(1141), + [anon_sym_clone] = ACTIONS(1143), + [anon_sym_print] = ACTIONS(1143), + [anon_sym_new] = ACTIONS(1143), + [anon_sym_PLUS_PLUS] = ACTIONS(1141), + [anon_sym_DASH_DASH] = ACTIONS(1141), + [sym_shell_command_expression] = ACTIONS(1141), + [anon_sym_list] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_self] = ACTIONS(1143), + [anon_sym_parent] = ACTIONS(1143), + [anon_sym_POUND_LBRACK] = ACTIONS(1141), + [sym_string] = ACTIONS(1141), + [sym_boolean] = ACTIONS(1143), + [sym_null] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1141), + [anon_sym_yield] = ACTIONS(1143), + [aux_sym_include_expression_token1] = ACTIONS(1143), + [aux_sym_include_once_expression_token1] = ACTIONS(1143), + [aux_sym_require_expression_token1] = ACTIONS(1143), + [aux_sym_require_once_expression_token1] = ACTIONS(1143), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1120), + [sym_heredoc] = ACTIONS(1141), }, [464] = { [sym_text_interpolation] = STATE(464), - [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_class_modifier_token1] = ACTIONS(1126), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(953), + [sym_name] = ACTIONS(955), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(953), + [aux_sym_function_static_declaration_token1] = ACTIONS(955), + [aux_sym_global_declaration_token1] = ACTIONS(955), + [aux_sym_namespace_definition_token1] = ACTIONS(955), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(955), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(955), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(955), + [anon_sym_BSLASH] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [aux_sym_trait_declaration_token1] = ACTIONS(955), + [aux_sym_interface_declaration_token1] = ACTIONS(955), + [aux_sym_class_declaration_token1] = ACTIONS(955), + [aux_sym_class_modifier_token1] = ACTIONS(955), + [aux_sym_class_modifier_token2] = ACTIONS(955), + [aux_sym_visibility_modifier_token1] = ACTIONS(955), + [aux_sym_visibility_modifier_token2] = ACTIONS(955), + [aux_sym_visibility_modifier_token3] = ACTIONS(955), + [aux_sym_arrow_function_token1] = ACTIONS(955), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_array] = ACTIONS(955), + [anon_sym_unset] = ACTIONS(955), + [aux_sym_echo_statement_token1] = ACTIONS(955), + [anon_sym_declare] = ACTIONS(955), + [aux_sym_declare_statement_token1] = ACTIONS(955), + [sym_float] = ACTIONS(955), + [aux_sym_try_statement_token1] = ACTIONS(955), + [aux_sym_goto_statement_token1] = ACTIONS(955), + [aux_sym_continue_statement_token1] = ACTIONS(955), + [aux_sym_break_statement_token1] = ACTIONS(955), + [sym_integer] = ACTIONS(955), + [aux_sym_return_statement_token1] = ACTIONS(955), + [aux_sym_throw_expression_token1] = ACTIONS(955), + [aux_sym_while_statement_token1] = ACTIONS(955), + [aux_sym_while_statement_token2] = ACTIONS(955), + [aux_sym_do_statement_token1] = ACTIONS(955), + [aux_sym_for_statement_token1] = ACTIONS(955), + [aux_sym_for_statement_token2] = ACTIONS(955), + [aux_sym_foreach_statement_token1] = ACTIONS(955), + [aux_sym_foreach_statement_token2] = ACTIONS(955), + [aux_sym_if_statement_token1] = ACTIONS(955), + [aux_sym_if_statement_token2] = ACTIONS(955), + [aux_sym_else_if_clause_token1] = ACTIONS(955), + [aux_sym_else_clause_token1] = ACTIONS(955), + [aux_sym_match_expression_token1] = ACTIONS(955), + [aux_sym_match_default_expression_token1] = ACTIONS(955), + [aux_sym_switch_statement_token1] = ACTIONS(955), + [aux_sym_switch_block_token1] = ACTIONS(955), + [aux_sym_case_statement_token1] = ACTIONS(955), + [anon_sym_AT] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_TILDE] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_clone] = ACTIONS(955), + [anon_sym_print] = ACTIONS(955), + [anon_sym_new] = ACTIONS(955), + [anon_sym_PLUS_PLUS] = ACTIONS(953), + [anon_sym_DASH_DASH] = ACTIONS(953), + [sym_shell_command_expression] = ACTIONS(953), + [anon_sym_list] = ACTIONS(955), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_self] = ACTIONS(955), + [anon_sym_parent] = ACTIONS(955), + [anon_sym_POUND_LBRACK] = ACTIONS(953), + [sym_string] = ACTIONS(953), + [sym_boolean] = ACTIONS(955), + [sym_null] = ACTIONS(955), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_yield] = ACTIONS(955), + [aux_sym_include_expression_token1] = ACTIONS(955), + [aux_sym_include_once_expression_token1] = ACTIONS(955), + [aux_sym_require_expression_token1] = ACTIONS(955), + [aux_sym_require_once_expression_token1] = ACTIONS(955), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1124), + [sym_heredoc] = ACTIONS(953), }, [465] = { [sym_text_interpolation] = STATE(465), - [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_class_modifier_token1] = ACTIONS(1130), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_name] = ACTIONS(1147), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1145), + [aux_sym_function_static_declaration_token1] = ACTIONS(1147), + [aux_sym_global_declaration_token1] = ACTIONS(1147), + [aux_sym_namespace_definition_token1] = ACTIONS(1147), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1147), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1147), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1147), + [anon_sym_BSLASH] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [aux_sym_trait_declaration_token1] = ACTIONS(1147), + [aux_sym_interface_declaration_token1] = ACTIONS(1147), + [aux_sym_class_declaration_token1] = ACTIONS(1147), + [aux_sym_class_modifier_token1] = ACTIONS(1147), + [aux_sym_class_modifier_token2] = ACTIONS(1147), + [aux_sym_visibility_modifier_token1] = ACTIONS(1147), + [aux_sym_visibility_modifier_token2] = ACTIONS(1147), + [aux_sym_visibility_modifier_token3] = ACTIONS(1147), + [aux_sym_arrow_function_token1] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_array] = ACTIONS(1147), + [anon_sym_unset] = ACTIONS(1147), + [aux_sym_echo_statement_token1] = ACTIONS(1147), + [anon_sym_declare] = ACTIONS(1147), + [aux_sym_declare_statement_token1] = ACTIONS(1147), + [sym_float] = ACTIONS(1147), + [aux_sym_try_statement_token1] = ACTIONS(1147), + [aux_sym_goto_statement_token1] = ACTIONS(1147), + [aux_sym_continue_statement_token1] = ACTIONS(1147), + [aux_sym_break_statement_token1] = ACTIONS(1147), + [sym_integer] = ACTIONS(1147), + [aux_sym_return_statement_token1] = ACTIONS(1147), + [aux_sym_throw_expression_token1] = ACTIONS(1147), + [aux_sym_while_statement_token1] = ACTIONS(1147), + [aux_sym_while_statement_token2] = ACTIONS(1147), + [aux_sym_do_statement_token1] = ACTIONS(1147), + [aux_sym_for_statement_token1] = ACTIONS(1147), + [aux_sym_for_statement_token2] = ACTIONS(1147), + [aux_sym_foreach_statement_token1] = ACTIONS(1147), + [aux_sym_foreach_statement_token2] = ACTIONS(1147), + [aux_sym_if_statement_token1] = ACTIONS(1147), + [aux_sym_if_statement_token2] = ACTIONS(1147), + [aux_sym_else_if_clause_token1] = ACTIONS(1147), + [aux_sym_else_clause_token1] = ACTIONS(1147), + [aux_sym_match_expression_token1] = ACTIONS(1147), + [aux_sym_match_default_expression_token1] = ACTIONS(1147), + [aux_sym_switch_statement_token1] = ACTIONS(1147), + [aux_sym_switch_block_token1] = ACTIONS(1147), + [aux_sym_case_statement_token1] = ACTIONS(1147), + [anon_sym_AT] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_BANG] = ACTIONS(1145), + [anon_sym_clone] = ACTIONS(1147), + [anon_sym_print] = ACTIONS(1147), + [anon_sym_new] = ACTIONS(1147), + [anon_sym_PLUS_PLUS] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1145), + [sym_shell_command_expression] = ACTIONS(1145), + [anon_sym_list] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1145), + [anon_sym_self] = ACTIONS(1147), + [anon_sym_parent] = ACTIONS(1147), + [anon_sym_POUND_LBRACK] = ACTIONS(1145), + [sym_string] = ACTIONS(1145), + [sym_boolean] = ACTIONS(1147), + [sym_null] = ACTIONS(1147), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_yield] = ACTIONS(1147), + [aux_sym_include_expression_token1] = ACTIONS(1147), + [aux_sym_include_once_expression_token1] = ACTIONS(1147), + [aux_sym_require_expression_token1] = ACTIONS(1147), + [aux_sym_require_once_expression_token1] = ACTIONS(1147), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1128), + [sym_heredoc] = ACTIONS(1145), }, [466] = { [sym_text_interpolation] = STATE(466), - [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_class_modifier_token1] = ACTIONS(1130), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1149), + [sym_name] = ACTIONS(1151), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1149), + [aux_sym_function_static_declaration_token1] = ACTIONS(1151), + [aux_sym_global_declaration_token1] = ACTIONS(1151), + [aux_sym_namespace_definition_token1] = ACTIONS(1151), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1151), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1151), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1151), + [anon_sym_BSLASH] = ACTIONS(1149), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_RBRACE] = ACTIONS(1149), + [aux_sym_trait_declaration_token1] = ACTIONS(1151), + [aux_sym_interface_declaration_token1] = ACTIONS(1151), + [aux_sym_class_declaration_token1] = ACTIONS(1151), + [aux_sym_class_modifier_token1] = ACTIONS(1151), + [aux_sym_class_modifier_token2] = ACTIONS(1151), + [aux_sym_visibility_modifier_token1] = ACTIONS(1151), + [aux_sym_visibility_modifier_token2] = ACTIONS(1151), + [aux_sym_visibility_modifier_token3] = ACTIONS(1151), + [aux_sym_arrow_function_token1] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1149), + [anon_sym_array] = ACTIONS(1151), + [anon_sym_unset] = ACTIONS(1151), + [aux_sym_echo_statement_token1] = ACTIONS(1151), + [anon_sym_declare] = ACTIONS(1151), + [aux_sym_declare_statement_token1] = ACTIONS(1151), + [sym_float] = ACTIONS(1151), + [aux_sym_try_statement_token1] = ACTIONS(1151), + [aux_sym_goto_statement_token1] = ACTIONS(1151), + [aux_sym_continue_statement_token1] = ACTIONS(1151), + [aux_sym_break_statement_token1] = ACTIONS(1151), + [sym_integer] = ACTIONS(1151), + [aux_sym_return_statement_token1] = ACTIONS(1151), + [aux_sym_throw_expression_token1] = ACTIONS(1151), + [aux_sym_while_statement_token1] = ACTIONS(1151), + [aux_sym_while_statement_token2] = ACTIONS(1151), + [aux_sym_do_statement_token1] = ACTIONS(1151), + [aux_sym_for_statement_token1] = ACTIONS(1151), + [aux_sym_for_statement_token2] = ACTIONS(1151), + [aux_sym_foreach_statement_token1] = ACTIONS(1151), + [aux_sym_foreach_statement_token2] = ACTIONS(1151), + [aux_sym_if_statement_token1] = ACTIONS(1151), + [aux_sym_if_statement_token2] = ACTIONS(1151), + [aux_sym_else_if_clause_token1] = ACTIONS(1151), + [aux_sym_else_clause_token1] = ACTIONS(1151), + [aux_sym_match_expression_token1] = ACTIONS(1151), + [aux_sym_match_default_expression_token1] = ACTIONS(1151), + [aux_sym_switch_statement_token1] = ACTIONS(1151), + [aux_sym_switch_block_token1] = ACTIONS(1151), + [aux_sym_case_statement_token1] = ACTIONS(1151), + [anon_sym_AT] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_BANG] = ACTIONS(1149), + [anon_sym_clone] = ACTIONS(1151), + [anon_sym_print] = ACTIONS(1151), + [anon_sym_new] = ACTIONS(1151), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [sym_shell_command_expression] = ACTIONS(1149), + [anon_sym_list] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_self] = ACTIONS(1151), + [anon_sym_parent] = ACTIONS(1151), + [anon_sym_POUND_LBRACK] = ACTIONS(1149), + [sym_string] = ACTIONS(1149), + [sym_boolean] = ACTIONS(1151), + [sym_null] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1149), + [anon_sym_yield] = ACTIONS(1151), + [aux_sym_include_expression_token1] = ACTIONS(1151), + [aux_sym_include_once_expression_token1] = ACTIONS(1151), + [aux_sym_require_expression_token1] = ACTIONS(1151), + [aux_sym_require_once_expression_token1] = ACTIONS(1151), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1128), + [sym_heredoc] = ACTIONS(1149), }, [467] = { [sym_text_interpolation] = STATE(467), - [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_class_modifier_token1] = ACTIONS(1134), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1153), + [sym_name] = ACTIONS(1155), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1153), + [aux_sym_function_static_declaration_token1] = ACTIONS(1155), + [aux_sym_global_declaration_token1] = ACTIONS(1155), + [aux_sym_namespace_definition_token1] = ACTIONS(1155), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1155), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1155), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1155), + [anon_sym_BSLASH] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1153), + [aux_sym_trait_declaration_token1] = ACTIONS(1155), + [aux_sym_interface_declaration_token1] = ACTIONS(1155), + [aux_sym_class_declaration_token1] = ACTIONS(1155), + [aux_sym_class_modifier_token1] = ACTIONS(1155), + [aux_sym_class_modifier_token2] = ACTIONS(1155), + [aux_sym_visibility_modifier_token1] = ACTIONS(1155), + [aux_sym_visibility_modifier_token2] = ACTIONS(1155), + [aux_sym_visibility_modifier_token3] = ACTIONS(1155), + [aux_sym_arrow_function_token1] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_array] = ACTIONS(1155), + [anon_sym_unset] = ACTIONS(1155), + [aux_sym_echo_statement_token1] = ACTIONS(1155), + [anon_sym_declare] = ACTIONS(1155), + [aux_sym_declare_statement_token1] = ACTIONS(1155), + [sym_float] = ACTIONS(1155), + [aux_sym_try_statement_token1] = ACTIONS(1155), + [aux_sym_goto_statement_token1] = ACTIONS(1155), + [aux_sym_continue_statement_token1] = ACTIONS(1155), + [aux_sym_break_statement_token1] = ACTIONS(1155), + [sym_integer] = ACTIONS(1155), + [aux_sym_return_statement_token1] = ACTIONS(1155), + [aux_sym_throw_expression_token1] = ACTIONS(1155), + [aux_sym_while_statement_token1] = ACTIONS(1155), + [aux_sym_while_statement_token2] = ACTIONS(1155), + [aux_sym_do_statement_token1] = ACTIONS(1155), + [aux_sym_for_statement_token1] = ACTIONS(1155), + [aux_sym_for_statement_token2] = ACTIONS(1155), + [aux_sym_foreach_statement_token1] = ACTIONS(1155), + [aux_sym_foreach_statement_token2] = ACTIONS(1155), + [aux_sym_if_statement_token1] = ACTIONS(1155), + [aux_sym_if_statement_token2] = ACTIONS(1155), + [aux_sym_else_if_clause_token1] = ACTIONS(1155), + [aux_sym_else_clause_token1] = ACTIONS(1155), + [aux_sym_match_expression_token1] = ACTIONS(1155), + [aux_sym_match_default_expression_token1] = ACTIONS(1155), + [aux_sym_switch_statement_token1] = ACTIONS(1155), + [aux_sym_switch_block_token1] = ACTIONS(1155), + [aux_sym_case_statement_token1] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_clone] = ACTIONS(1155), + [anon_sym_print] = ACTIONS(1155), + [anon_sym_new] = ACTIONS(1155), + [anon_sym_PLUS_PLUS] = ACTIONS(1153), + [anon_sym_DASH_DASH] = ACTIONS(1153), + [sym_shell_command_expression] = ACTIONS(1153), + [anon_sym_list] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1153), + [anon_sym_self] = ACTIONS(1155), + [anon_sym_parent] = ACTIONS(1155), + [anon_sym_POUND_LBRACK] = ACTIONS(1153), + [sym_string] = ACTIONS(1153), + [sym_boolean] = ACTIONS(1155), + [sym_null] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1153), + [anon_sym_yield] = ACTIONS(1155), + [aux_sym_include_expression_token1] = ACTIONS(1155), + [aux_sym_include_once_expression_token1] = ACTIONS(1155), + [aux_sym_require_expression_token1] = ACTIONS(1155), + [aux_sym_require_once_expression_token1] = ACTIONS(1155), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1132), + [sym_heredoc] = ACTIONS(1153), }, [468] = { [sym_text_interpolation] = STATE(468), - [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_class_modifier_token1] = ACTIONS(1138), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1157), + [sym_name] = ACTIONS(1159), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1157), + [aux_sym_function_static_declaration_token1] = ACTIONS(1159), + [aux_sym_global_declaration_token1] = ACTIONS(1159), + [aux_sym_namespace_definition_token1] = ACTIONS(1159), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1159), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1159), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1159), + [anon_sym_BSLASH] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [aux_sym_trait_declaration_token1] = ACTIONS(1159), + [aux_sym_interface_declaration_token1] = ACTIONS(1159), + [aux_sym_class_declaration_token1] = ACTIONS(1159), + [aux_sym_class_modifier_token1] = ACTIONS(1159), + [aux_sym_class_modifier_token2] = ACTIONS(1159), + [aux_sym_visibility_modifier_token1] = ACTIONS(1159), + [aux_sym_visibility_modifier_token2] = ACTIONS(1159), + [aux_sym_visibility_modifier_token3] = ACTIONS(1159), + [aux_sym_arrow_function_token1] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_array] = ACTIONS(1159), + [anon_sym_unset] = ACTIONS(1159), + [aux_sym_echo_statement_token1] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1159), + [aux_sym_declare_statement_token1] = ACTIONS(1159), + [sym_float] = ACTIONS(1159), + [aux_sym_try_statement_token1] = ACTIONS(1159), + [aux_sym_goto_statement_token1] = ACTIONS(1159), + [aux_sym_continue_statement_token1] = ACTIONS(1159), + [aux_sym_break_statement_token1] = ACTIONS(1159), + [sym_integer] = ACTIONS(1159), + [aux_sym_return_statement_token1] = ACTIONS(1159), + [aux_sym_throw_expression_token1] = ACTIONS(1159), + [aux_sym_while_statement_token1] = ACTIONS(1159), + [aux_sym_while_statement_token2] = ACTIONS(1159), + [aux_sym_do_statement_token1] = ACTIONS(1159), + [aux_sym_for_statement_token1] = ACTIONS(1159), + [aux_sym_for_statement_token2] = ACTIONS(1159), + [aux_sym_foreach_statement_token1] = ACTIONS(1159), + [aux_sym_foreach_statement_token2] = ACTIONS(1159), + [aux_sym_if_statement_token1] = ACTIONS(1159), + [aux_sym_if_statement_token2] = ACTIONS(1159), + [aux_sym_else_if_clause_token1] = ACTIONS(1159), + [aux_sym_else_clause_token1] = ACTIONS(1159), + [aux_sym_match_expression_token1] = ACTIONS(1159), + [aux_sym_match_default_expression_token1] = ACTIONS(1159), + [aux_sym_switch_statement_token1] = ACTIONS(1159), + [aux_sym_switch_block_token1] = ACTIONS(1159), + [aux_sym_case_statement_token1] = ACTIONS(1159), + [anon_sym_AT] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_BANG] = ACTIONS(1157), + [anon_sym_clone] = ACTIONS(1159), + [anon_sym_print] = ACTIONS(1159), + [anon_sym_new] = ACTIONS(1159), + [anon_sym_PLUS_PLUS] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1157), + [sym_shell_command_expression] = ACTIONS(1157), + [anon_sym_list] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_self] = ACTIONS(1159), + [anon_sym_parent] = ACTIONS(1159), + [anon_sym_POUND_LBRACK] = ACTIONS(1157), + [sym_string] = ACTIONS(1157), + [sym_boolean] = ACTIONS(1159), + [sym_null] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_yield] = ACTIONS(1159), + [aux_sym_include_expression_token1] = ACTIONS(1159), + [aux_sym_include_once_expression_token1] = ACTIONS(1159), + [aux_sym_require_expression_token1] = ACTIONS(1159), + [aux_sym_require_once_expression_token1] = ACTIONS(1159), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1136), + [sym_heredoc] = ACTIONS(1157), }, [469] = { [sym_text_interpolation] = STATE(469), - [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_class_modifier_token1] = ACTIONS(1142), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1161), + [sym_name] = ACTIONS(1163), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1161), + [aux_sym_function_static_declaration_token1] = ACTIONS(1163), + [aux_sym_global_declaration_token1] = ACTIONS(1163), + [aux_sym_namespace_definition_token1] = ACTIONS(1163), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1163), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1163), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1163), + [anon_sym_BSLASH] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1161), + [aux_sym_trait_declaration_token1] = ACTIONS(1163), + [aux_sym_interface_declaration_token1] = ACTIONS(1163), + [aux_sym_class_declaration_token1] = ACTIONS(1163), + [aux_sym_class_modifier_token1] = ACTIONS(1163), + [aux_sym_class_modifier_token2] = ACTIONS(1163), + [aux_sym_visibility_modifier_token1] = ACTIONS(1163), + [aux_sym_visibility_modifier_token2] = ACTIONS(1163), + [aux_sym_visibility_modifier_token3] = ACTIONS(1163), + [aux_sym_arrow_function_token1] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1161), + [anon_sym_array] = ACTIONS(1163), + [anon_sym_unset] = ACTIONS(1163), + [aux_sym_echo_statement_token1] = ACTIONS(1163), + [anon_sym_declare] = ACTIONS(1163), + [aux_sym_declare_statement_token1] = ACTIONS(1163), + [sym_float] = ACTIONS(1163), + [aux_sym_try_statement_token1] = ACTIONS(1163), + [aux_sym_goto_statement_token1] = ACTIONS(1163), + [aux_sym_continue_statement_token1] = ACTIONS(1163), + [aux_sym_break_statement_token1] = ACTIONS(1163), + [sym_integer] = ACTIONS(1163), + [aux_sym_return_statement_token1] = ACTIONS(1163), + [aux_sym_throw_expression_token1] = ACTIONS(1163), + [aux_sym_while_statement_token1] = ACTIONS(1163), + [aux_sym_while_statement_token2] = ACTIONS(1163), + [aux_sym_do_statement_token1] = ACTIONS(1163), + [aux_sym_for_statement_token1] = ACTIONS(1163), + [aux_sym_for_statement_token2] = ACTIONS(1163), + [aux_sym_foreach_statement_token1] = ACTIONS(1163), + [aux_sym_foreach_statement_token2] = ACTIONS(1163), + [aux_sym_if_statement_token1] = ACTIONS(1163), + [aux_sym_if_statement_token2] = ACTIONS(1163), + [aux_sym_else_if_clause_token1] = ACTIONS(1163), + [aux_sym_else_clause_token1] = ACTIONS(1163), + [aux_sym_match_expression_token1] = ACTIONS(1163), + [aux_sym_match_default_expression_token1] = ACTIONS(1163), + [aux_sym_switch_statement_token1] = ACTIONS(1163), + [aux_sym_switch_block_token1] = ACTIONS(1163), + [aux_sym_case_statement_token1] = ACTIONS(1163), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_BANG] = ACTIONS(1161), + [anon_sym_clone] = ACTIONS(1163), + [anon_sym_print] = ACTIONS(1163), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(1161), + [anon_sym_DASH_DASH] = ACTIONS(1161), + [sym_shell_command_expression] = ACTIONS(1161), + [anon_sym_list] = ACTIONS(1163), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_self] = ACTIONS(1163), + [anon_sym_parent] = ACTIONS(1163), + [anon_sym_POUND_LBRACK] = ACTIONS(1161), + [sym_string] = ACTIONS(1161), + [sym_boolean] = ACTIONS(1163), + [sym_null] = ACTIONS(1163), + [anon_sym_DOLLAR] = ACTIONS(1161), + [anon_sym_yield] = ACTIONS(1163), + [aux_sym_include_expression_token1] = ACTIONS(1163), + [aux_sym_include_once_expression_token1] = ACTIONS(1163), + [aux_sym_require_expression_token1] = ACTIONS(1163), + [aux_sym_require_once_expression_token1] = ACTIONS(1163), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1140), + [sym_heredoc] = ACTIONS(1161), }, [470] = { [sym_text_interpolation] = STATE(470), - [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_class_modifier_token1] = ACTIONS(1146), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1165), + [sym_name] = ACTIONS(1167), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1165), + [aux_sym_function_static_declaration_token1] = ACTIONS(1167), + [aux_sym_global_declaration_token1] = ACTIONS(1167), + [aux_sym_namespace_definition_token1] = ACTIONS(1167), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1167), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1167), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1167), + [anon_sym_BSLASH] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [aux_sym_trait_declaration_token1] = ACTIONS(1167), + [aux_sym_interface_declaration_token1] = ACTIONS(1167), + [aux_sym_class_declaration_token1] = ACTIONS(1167), + [aux_sym_class_modifier_token1] = ACTIONS(1167), + [aux_sym_class_modifier_token2] = ACTIONS(1167), + [aux_sym_visibility_modifier_token1] = ACTIONS(1167), + [aux_sym_visibility_modifier_token2] = ACTIONS(1167), + [aux_sym_visibility_modifier_token3] = ACTIONS(1167), + [aux_sym_arrow_function_token1] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_array] = ACTIONS(1167), + [anon_sym_unset] = ACTIONS(1167), + [aux_sym_echo_statement_token1] = ACTIONS(1167), + [anon_sym_declare] = ACTIONS(1167), + [aux_sym_declare_statement_token1] = ACTIONS(1167), + [sym_float] = ACTIONS(1167), + [aux_sym_try_statement_token1] = ACTIONS(1167), + [aux_sym_goto_statement_token1] = ACTIONS(1167), + [aux_sym_continue_statement_token1] = ACTIONS(1167), + [aux_sym_break_statement_token1] = ACTIONS(1167), + [sym_integer] = ACTIONS(1167), + [aux_sym_return_statement_token1] = ACTIONS(1167), + [aux_sym_throw_expression_token1] = ACTIONS(1167), + [aux_sym_while_statement_token1] = ACTIONS(1167), + [aux_sym_while_statement_token2] = ACTIONS(1167), + [aux_sym_do_statement_token1] = ACTIONS(1167), + [aux_sym_for_statement_token1] = ACTIONS(1167), + [aux_sym_for_statement_token2] = ACTIONS(1167), + [aux_sym_foreach_statement_token1] = ACTIONS(1167), + [aux_sym_foreach_statement_token2] = ACTIONS(1167), + [aux_sym_if_statement_token1] = ACTIONS(1167), + [aux_sym_if_statement_token2] = ACTIONS(1167), + [aux_sym_else_if_clause_token1] = ACTIONS(1167), + [aux_sym_else_clause_token1] = ACTIONS(1167), + [aux_sym_match_expression_token1] = ACTIONS(1167), + [aux_sym_match_default_expression_token1] = ACTIONS(1167), + [aux_sym_switch_statement_token1] = ACTIONS(1167), + [aux_sym_switch_block_token1] = ACTIONS(1167), + [aux_sym_case_statement_token1] = ACTIONS(1167), + [anon_sym_AT] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1165), + [anon_sym_clone] = ACTIONS(1167), + [anon_sym_print] = ACTIONS(1167), + [anon_sym_new] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1165), + [sym_shell_command_expression] = ACTIONS(1165), + [anon_sym_list] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_self] = ACTIONS(1167), + [anon_sym_parent] = ACTIONS(1167), + [anon_sym_POUND_LBRACK] = ACTIONS(1165), + [sym_string] = ACTIONS(1165), + [sym_boolean] = ACTIONS(1167), + [sym_null] = ACTIONS(1167), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_yield] = ACTIONS(1167), + [aux_sym_include_expression_token1] = ACTIONS(1167), + [aux_sym_include_once_expression_token1] = ACTIONS(1167), + [aux_sym_require_expression_token1] = ACTIONS(1167), + [aux_sym_require_once_expression_token1] = ACTIONS(1167), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1144), + [sym_heredoc] = ACTIONS(1165), }, [471] = { [sym_text_interpolation] = STATE(471), - [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_class_modifier_token1] = ACTIONS(1150), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1169), + [sym_name] = ACTIONS(1171), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1169), + [aux_sym_function_static_declaration_token1] = ACTIONS(1171), + [aux_sym_global_declaration_token1] = ACTIONS(1171), + [aux_sym_namespace_definition_token1] = ACTIONS(1171), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1171), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1171), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1171), + [anon_sym_BSLASH] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_RBRACE] = ACTIONS(1169), + [aux_sym_trait_declaration_token1] = ACTIONS(1171), + [aux_sym_interface_declaration_token1] = ACTIONS(1171), + [aux_sym_class_declaration_token1] = ACTIONS(1171), + [aux_sym_class_modifier_token1] = ACTIONS(1171), + [aux_sym_class_modifier_token2] = ACTIONS(1171), + [aux_sym_visibility_modifier_token1] = ACTIONS(1171), + [aux_sym_visibility_modifier_token2] = ACTIONS(1171), + [aux_sym_visibility_modifier_token3] = ACTIONS(1171), + [aux_sym_arrow_function_token1] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1169), + [anon_sym_array] = ACTIONS(1171), + [anon_sym_unset] = ACTIONS(1171), + [aux_sym_echo_statement_token1] = ACTIONS(1171), + [anon_sym_declare] = ACTIONS(1171), + [aux_sym_declare_statement_token1] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [aux_sym_try_statement_token1] = ACTIONS(1171), + [aux_sym_goto_statement_token1] = ACTIONS(1171), + [aux_sym_continue_statement_token1] = ACTIONS(1171), + [aux_sym_break_statement_token1] = ACTIONS(1171), + [sym_integer] = ACTIONS(1171), + [aux_sym_return_statement_token1] = ACTIONS(1171), + [aux_sym_throw_expression_token1] = ACTIONS(1171), + [aux_sym_while_statement_token1] = ACTIONS(1171), + [aux_sym_while_statement_token2] = ACTIONS(1171), + [aux_sym_do_statement_token1] = ACTIONS(1171), + [aux_sym_for_statement_token1] = ACTIONS(1171), + [aux_sym_for_statement_token2] = ACTIONS(1171), + [aux_sym_foreach_statement_token1] = ACTIONS(1171), + [aux_sym_foreach_statement_token2] = ACTIONS(1171), + [aux_sym_if_statement_token1] = ACTIONS(1171), + [aux_sym_if_statement_token2] = ACTIONS(1171), + [aux_sym_else_if_clause_token1] = ACTIONS(1171), + [aux_sym_else_clause_token1] = ACTIONS(1171), + [aux_sym_match_expression_token1] = ACTIONS(1171), + [aux_sym_match_default_expression_token1] = ACTIONS(1171), + [aux_sym_switch_statement_token1] = ACTIONS(1171), + [aux_sym_switch_block_token1] = ACTIONS(1171), + [aux_sym_case_statement_token1] = ACTIONS(1171), + [anon_sym_AT] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(1169), + [anon_sym_clone] = ACTIONS(1171), + [anon_sym_print] = ACTIONS(1171), + [anon_sym_new] = ACTIONS(1171), + [anon_sym_PLUS_PLUS] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1169), + [sym_shell_command_expression] = ACTIONS(1169), + [anon_sym_list] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1169), + [anon_sym_self] = ACTIONS(1171), + [anon_sym_parent] = ACTIONS(1171), + [anon_sym_POUND_LBRACK] = ACTIONS(1169), + [sym_string] = ACTIONS(1169), + [sym_boolean] = ACTIONS(1171), + [sym_null] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1169), + [anon_sym_yield] = ACTIONS(1171), + [aux_sym_include_expression_token1] = ACTIONS(1171), + [aux_sym_include_once_expression_token1] = ACTIONS(1171), + [aux_sym_require_expression_token1] = ACTIONS(1171), + [aux_sym_require_once_expression_token1] = ACTIONS(1171), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1148), + [sym_heredoc] = ACTIONS(1169), }, [472] = { [sym_text_interpolation] = STATE(472), - [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_class_modifier_token1] = ACTIONS(1154), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1173), + [sym_name] = ACTIONS(1175), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1173), + [aux_sym_function_static_declaration_token1] = ACTIONS(1175), + [aux_sym_global_declaration_token1] = ACTIONS(1175), + [aux_sym_namespace_definition_token1] = ACTIONS(1175), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1175), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1175), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1175), + [anon_sym_BSLASH] = ACTIONS(1173), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [aux_sym_trait_declaration_token1] = ACTIONS(1175), + [aux_sym_interface_declaration_token1] = ACTIONS(1175), + [aux_sym_class_declaration_token1] = ACTIONS(1175), + [aux_sym_class_modifier_token1] = ACTIONS(1175), + [aux_sym_class_modifier_token2] = ACTIONS(1175), + [aux_sym_visibility_modifier_token1] = ACTIONS(1175), + [aux_sym_visibility_modifier_token2] = ACTIONS(1175), + [aux_sym_visibility_modifier_token3] = ACTIONS(1175), + [aux_sym_arrow_function_token1] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_array] = ACTIONS(1175), + [anon_sym_unset] = ACTIONS(1175), + [aux_sym_echo_statement_token1] = ACTIONS(1175), + [anon_sym_declare] = ACTIONS(1175), + [aux_sym_declare_statement_token1] = ACTIONS(1175), + [sym_float] = ACTIONS(1175), + [aux_sym_try_statement_token1] = ACTIONS(1175), + [aux_sym_goto_statement_token1] = ACTIONS(1175), + [aux_sym_continue_statement_token1] = ACTIONS(1175), + [aux_sym_break_statement_token1] = ACTIONS(1175), + [sym_integer] = ACTIONS(1175), + [aux_sym_return_statement_token1] = ACTIONS(1175), + [aux_sym_throw_expression_token1] = ACTIONS(1175), + [aux_sym_while_statement_token1] = ACTIONS(1175), + [aux_sym_while_statement_token2] = ACTIONS(1175), + [aux_sym_do_statement_token1] = ACTIONS(1175), + [aux_sym_for_statement_token1] = ACTIONS(1175), + [aux_sym_for_statement_token2] = ACTIONS(1175), + [aux_sym_foreach_statement_token1] = ACTIONS(1175), + [aux_sym_foreach_statement_token2] = ACTIONS(1175), + [aux_sym_if_statement_token1] = ACTIONS(1175), + [aux_sym_if_statement_token2] = ACTIONS(1175), + [aux_sym_else_if_clause_token1] = ACTIONS(1175), + [aux_sym_else_clause_token1] = ACTIONS(1175), + [aux_sym_match_expression_token1] = ACTIONS(1175), + [aux_sym_match_default_expression_token1] = ACTIONS(1175), + [aux_sym_switch_statement_token1] = ACTIONS(1175), + [aux_sym_switch_block_token1] = ACTIONS(1175), + [aux_sym_case_statement_token1] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_clone] = ACTIONS(1175), + [anon_sym_print] = ACTIONS(1175), + [anon_sym_new] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [sym_shell_command_expression] = ACTIONS(1173), + [anon_sym_list] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_self] = ACTIONS(1175), + [anon_sym_parent] = ACTIONS(1175), + [anon_sym_POUND_LBRACK] = ACTIONS(1173), + [sym_string] = ACTIONS(1173), + [sym_boolean] = ACTIONS(1175), + [sym_null] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_yield] = ACTIONS(1175), + [aux_sym_include_expression_token1] = ACTIONS(1175), + [aux_sym_include_once_expression_token1] = ACTIONS(1175), + [aux_sym_require_expression_token1] = ACTIONS(1175), + [aux_sym_require_once_expression_token1] = ACTIONS(1175), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1152), + [sym_heredoc] = ACTIONS(1173), }, [473] = { [sym_text_interpolation] = STATE(473), - [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_class_modifier_token1] = ACTIONS(1158), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1173), + [sym_name] = ACTIONS(1175), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1173), + [aux_sym_function_static_declaration_token1] = ACTIONS(1175), + [aux_sym_global_declaration_token1] = ACTIONS(1175), + [aux_sym_namespace_definition_token1] = ACTIONS(1175), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1175), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1175), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1175), + [anon_sym_BSLASH] = ACTIONS(1173), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [aux_sym_trait_declaration_token1] = ACTIONS(1175), + [aux_sym_interface_declaration_token1] = ACTIONS(1175), + [aux_sym_class_declaration_token1] = ACTIONS(1175), + [aux_sym_class_modifier_token1] = ACTIONS(1175), + [aux_sym_class_modifier_token2] = ACTIONS(1175), + [aux_sym_visibility_modifier_token1] = ACTIONS(1175), + [aux_sym_visibility_modifier_token2] = ACTIONS(1175), + [aux_sym_visibility_modifier_token3] = ACTIONS(1175), + [aux_sym_arrow_function_token1] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_array] = ACTIONS(1175), + [anon_sym_unset] = ACTIONS(1175), + [aux_sym_echo_statement_token1] = ACTIONS(1175), + [anon_sym_declare] = ACTIONS(1175), + [aux_sym_declare_statement_token1] = ACTIONS(1175), + [sym_float] = ACTIONS(1175), + [aux_sym_try_statement_token1] = ACTIONS(1175), + [aux_sym_goto_statement_token1] = ACTIONS(1175), + [aux_sym_continue_statement_token1] = ACTIONS(1175), + [aux_sym_break_statement_token1] = ACTIONS(1175), + [sym_integer] = ACTIONS(1175), + [aux_sym_return_statement_token1] = ACTIONS(1175), + [aux_sym_throw_expression_token1] = ACTIONS(1175), + [aux_sym_while_statement_token1] = ACTIONS(1175), + [aux_sym_while_statement_token2] = ACTIONS(1175), + [aux_sym_do_statement_token1] = ACTIONS(1175), + [aux_sym_for_statement_token1] = ACTIONS(1175), + [aux_sym_for_statement_token2] = ACTIONS(1175), + [aux_sym_foreach_statement_token1] = ACTIONS(1175), + [aux_sym_foreach_statement_token2] = ACTIONS(1175), + [aux_sym_if_statement_token1] = ACTIONS(1175), + [aux_sym_if_statement_token2] = ACTIONS(1175), + [aux_sym_else_if_clause_token1] = ACTIONS(1175), + [aux_sym_else_clause_token1] = ACTIONS(1175), + [aux_sym_match_expression_token1] = ACTIONS(1175), + [aux_sym_match_default_expression_token1] = ACTIONS(1175), + [aux_sym_switch_statement_token1] = ACTIONS(1175), + [aux_sym_switch_block_token1] = ACTIONS(1175), + [aux_sym_case_statement_token1] = ACTIONS(1175), + [anon_sym_AT] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_clone] = ACTIONS(1175), + [anon_sym_print] = ACTIONS(1175), + [anon_sym_new] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [sym_shell_command_expression] = ACTIONS(1173), + [anon_sym_list] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_self] = ACTIONS(1175), + [anon_sym_parent] = ACTIONS(1175), + [anon_sym_POUND_LBRACK] = ACTIONS(1173), + [sym_string] = ACTIONS(1173), + [sym_boolean] = ACTIONS(1175), + [sym_null] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_yield] = ACTIONS(1175), + [aux_sym_include_expression_token1] = ACTIONS(1175), + [aux_sym_include_once_expression_token1] = ACTIONS(1175), + [aux_sym_require_expression_token1] = ACTIONS(1175), + [aux_sym_require_once_expression_token1] = ACTIONS(1175), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1156), + [sym_heredoc] = ACTIONS(1173), }, [474] = { [sym_text_interpolation] = STATE(474), - [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_class_modifier_token1] = ACTIONS(1162), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1177), + [sym_name] = ACTIONS(1179), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1177), + [aux_sym_function_static_declaration_token1] = ACTIONS(1179), + [aux_sym_global_declaration_token1] = ACTIONS(1179), + [aux_sym_namespace_definition_token1] = ACTIONS(1179), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1179), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1179), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1179), + [anon_sym_BSLASH] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [aux_sym_trait_declaration_token1] = ACTIONS(1179), + [aux_sym_interface_declaration_token1] = ACTIONS(1179), + [aux_sym_class_declaration_token1] = ACTIONS(1179), + [aux_sym_class_modifier_token1] = ACTIONS(1179), + [aux_sym_class_modifier_token2] = ACTIONS(1179), + [aux_sym_visibility_modifier_token1] = ACTIONS(1179), + [aux_sym_visibility_modifier_token2] = ACTIONS(1179), + [aux_sym_visibility_modifier_token3] = ACTIONS(1179), + [aux_sym_arrow_function_token1] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_array] = ACTIONS(1179), + [anon_sym_unset] = ACTIONS(1179), + [aux_sym_echo_statement_token1] = ACTIONS(1179), + [anon_sym_declare] = ACTIONS(1179), + [aux_sym_declare_statement_token1] = ACTIONS(1179), + [sym_float] = ACTIONS(1179), + [aux_sym_try_statement_token1] = ACTIONS(1179), + [aux_sym_goto_statement_token1] = ACTIONS(1179), + [aux_sym_continue_statement_token1] = ACTIONS(1179), + [aux_sym_break_statement_token1] = ACTIONS(1179), + [sym_integer] = ACTIONS(1179), + [aux_sym_return_statement_token1] = ACTIONS(1179), + [aux_sym_throw_expression_token1] = ACTIONS(1179), + [aux_sym_while_statement_token1] = ACTIONS(1179), + [aux_sym_while_statement_token2] = ACTIONS(1179), + [aux_sym_do_statement_token1] = ACTIONS(1179), + [aux_sym_for_statement_token1] = ACTIONS(1179), + [aux_sym_for_statement_token2] = ACTIONS(1179), + [aux_sym_foreach_statement_token1] = ACTIONS(1179), + [aux_sym_foreach_statement_token2] = ACTIONS(1179), + [aux_sym_if_statement_token1] = ACTIONS(1179), + [aux_sym_if_statement_token2] = ACTIONS(1179), + [aux_sym_else_if_clause_token1] = ACTIONS(1179), + [aux_sym_else_clause_token1] = ACTIONS(1179), + [aux_sym_match_expression_token1] = ACTIONS(1179), + [aux_sym_match_default_expression_token1] = ACTIONS(1179), + [aux_sym_switch_statement_token1] = ACTIONS(1179), + [aux_sym_switch_block_token1] = ACTIONS(1179), + [aux_sym_case_statement_token1] = ACTIONS(1179), + [anon_sym_AT] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1177), + [anon_sym_clone] = ACTIONS(1179), + [anon_sym_print] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1177), + [sym_shell_command_expression] = ACTIONS(1177), + [anon_sym_list] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_self] = ACTIONS(1179), + [anon_sym_parent] = ACTIONS(1179), + [anon_sym_POUND_LBRACK] = ACTIONS(1177), + [sym_string] = ACTIONS(1177), + [sym_boolean] = ACTIONS(1179), + [sym_null] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_yield] = ACTIONS(1179), + [aux_sym_include_expression_token1] = ACTIONS(1179), + [aux_sym_include_once_expression_token1] = ACTIONS(1179), + [aux_sym_require_expression_token1] = ACTIONS(1179), + [aux_sym_require_once_expression_token1] = ACTIONS(1179), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1160), + [sym_heredoc] = ACTIONS(1177), }, [475] = { [sym_text_interpolation] = STATE(475), - [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), - [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(1181), + [sym_name] = ACTIONS(1183), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1181), + [aux_sym_function_static_declaration_token1] = ACTIONS(1183), + [aux_sym_global_declaration_token1] = ACTIONS(1183), + [aux_sym_namespace_definition_token1] = ACTIONS(1183), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1183), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1183), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1183), + [anon_sym_BSLASH] = ACTIONS(1181), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [aux_sym_trait_declaration_token1] = ACTIONS(1183), + [aux_sym_interface_declaration_token1] = ACTIONS(1183), + [aux_sym_class_declaration_token1] = ACTIONS(1183), + [aux_sym_class_modifier_token1] = ACTIONS(1183), + [aux_sym_class_modifier_token2] = ACTIONS(1183), + [aux_sym_visibility_modifier_token1] = ACTIONS(1183), + [aux_sym_visibility_modifier_token2] = ACTIONS(1183), + [aux_sym_visibility_modifier_token3] = ACTIONS(1183), + [aux_sym_arrow_function_token1] = ACTIONS(1183), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_array] = ACTIONS(1183), + [anon_sym_unset] = ACTIONS(1183), + [aux_sym_echo_statement_token1] = ACTIONS(1183), + [anon_sym_declare] = ACTIONS(1183), + [aux_sym_declare_statement_token1] = ACTIONS(1183), + [sym_float] = ACTIONS(1183), + [aux_sym_try_statement_token1] = ACTIONS(1183), + [aux_sym_goto_statement_token1] = ACTIONS(1183), + [aux_sym_continue_statement_token1] = ACTIONS(1183), + [aux_sym_break_statement_token1] = ACTIONS(1183), + [sym_integer] = ACTIONS(1183), + [aux_sym_return_statement_token1] = ACTIONS(1183), + [aux_sym_throw_expression_token1] = ACTIONS(1183), + [aux_sym_while_statement_token1] = ACTIONS(1183), + [aux_sym_while_statement_token2] = ACTIONS(1183), + [aux_sym_do_statement_token1] = ACTIONS(1183), + [aux_sym_for_statement_token1] = ACTIONS(1183), + [aux_sym_for_statement_token2] = ACTIONS(1183), + [aux_sym_foreach_statement_token1] = ACTIONS(1183), + [aux_sym_foreach_statement_token2] = ACTIONS(1183), + [aux_sym_if_statement_token1] = ACTIONS(1183), + [aux_sym_if_statement_token2] = ACTIONS(1183), + [aux_sym_else_if_clause_token1] = ACTIONS(1183), + [aux_sym_else_clause_token1] = ACTIONS(1183), + [aux_sym_match_expression_token1] = ACTIONS(1183), + [aux_sym_match_default_expression_token1] = ACTIONS(1183), + [aux_sym_switch_statement_token1] = ACTIONS(1183), + [aux_sym_switch_block_token1] = ACTIONS(1183), + [aux_sym_case_statement_token1] = ACTIONS(1183), + [anon_sym_AT] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(1181), + [anon_sym_clone] = ACTIONS(1183), + [anon_sym_print] = ACTIONS(1183), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(1181), + [anon_sym_DASH_DASH] = ACTIONS(1181), + [sym_shell_command_expression] = ACTIONS(1181), + [anon_sym_list] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_self] = ACTIONS(1183), + [anon_sym_parent] = ACTIONS(1183), + [anon_sym_POUND_LBRACK] = ACTIONS(1181), + [sym_string] = ACTIONS(1181), + [sym_boolean] = ACTIONS(1183), + [sym_null] = ACTIONS(1183), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_yield] = ACTIONS(1183), + [aux_sym_include_expression_token1] = ACTIONS(1183), + [aux_sym_include_once_expression_token1] = ACTIONS(1183), + [aux_sym_require_expression_token1] = ACTIONS(1183), + [aux_sym_require_once_expression_token1] = ACTIONS(1183), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(904), + [sym_heredoc] = ACTIONS(1181), }, [476] = { [sym_text_interpolation] = STATE(476), - [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_class_modifier_token1] = ACTIONS(1166), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1185), + [sym_name] = ACTIONS(1187), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1185), + [aux_sym_function_static_declaration_token1] = ACTIONS(1187), + [aux_sym_global_declaration_token1] = ACTIONS(1187), + [aux_sym_namespace_definition_token1] = ACTIONS(1187), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1187), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1187), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1187), + [anon_sym_BSLASH] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [aux_sym_trait_declaration_token1] = ACTIONS(1187), + [aux_sym_interface_declaration_token1] = ACTIONS(1187), + [aux_sym_class_declaration_token1] = ACTIONS(1187), + [aux_sym_class_modifier_token1] = ACTIONS(1187), + [aux_sym_class_modifier_token2] = ACTIONS(1187), + [aux_sym_visibility_modifier_token1] = ACTIONS(1187), + [aux_sym_visibility_modifier_token2] = ACTIONS(1187), + [aux_sym_visibility_modifier_token3] = ACTIONS(1187), + [aux_sym_arrow_function_token1] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_array] = ACTIONS(1187), + [anon_sym_unset] = ACTIONS(1187), + [aux_sym_echo_statement_token1] = ACTIONS(1187), + [anon_sym_declare] = ACTIONS(1187), + [aux_sym_declare_statement_token1] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [aux_sym_try_statement_token1] = ACTIONS(1187), + [aux_sym_goto_statement_token1] = ACTIONS(1187), + [aux_sym_continue_statement_token1] = ACTIONS(1187), + [aux_sym_break_statement_token1] = ACTIONS(1187), + [sym_integer] = ACTIONS(1187), + [aux_sym_return_statement_token1] = ACTIONS(1187), + [aux_sym_throw_expression_token1] = ACTIONS(1187), + [aux_sym_while_statement_token1] = ACTIONS(1187), + [aux_sym_while_statement_token2] = ACTIONS(1187), + [aux_sym_do_statement_token1] = ACTIONS(1187), + [aux_sym_for_statement_token1] = ACTIONS(1187), + [aux_sym_for_statement_token2] = ACTIONS(1187), + [aux_sym_foreach_statement_token1] = ACTIONS(1187), + [aux_sym_foreach_statement_token2] = ACTIONS(1187), + [aux_sym_if_statement_token1] = ACTIONS(1187), + [aux_sym_if_statement_token2] = ACTIONS(1187), + [aux_sym_else_if_clause_token1] = ACTIONS(1187), + [aux_sym_else_clause_token1] = ACTIONS(1187), + [aux_sym_match_expression_token1] = ACTIONS(1187), + [aux_sym_match_default_expression_token1] = ACTIONS(1187), + [aux_sym_switch_statement_token1] = ACTIONS(1187), + [aux_sym_switch_block_token1] = ACTIONS(1187), + [aux_sym_case_statement_token1] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_BANG] = ACTIONS(1185), + [anon_sym_clone] = ACTIONS(1187), + [anon_sym_print] = ACTIONS(1187), + [anon_sym_new] = ACTIONS(1187), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [sym_shell_command_expression] = ACTIONS(1185), + [anon_sym_list] = ACTIONS(1187), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_self] = ACTIONS(1187), + [anon_sym_parent] = ACTIONS(1187), + [anon_sym_POUND_LBRACK] = ACTIONS(1185), + [sym_string] = ACTIONS(1185), + [sym_boolean] = ACTIONS(1187), + [sym_null] = ACTIONS(1187), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_yield] = ACTIONS(1187), + [aux_sym_include_expression_token1] = ACTIONS(1187), + [aux_sym_include_once_expression_token1] = ACTIONS(1187), + [aux_sym_require_expression_token1] = ACTIONS(1187), + [aux_sym_require_once_expression_token1] = ACTIONS(1187), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1164), + [sym_heredoc] = ACTIONS(1185), }, [477] = { [sym_text_interpolation] = STATE(477), - [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_class_modifier_token1] = ACTIONS(1170), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1189), + [sym_name] = ACTIONS(1191), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1189), + [aux_sym_function_static_declaration_token1] = ACTIONS(1191), + [aux_sym_global_declaration_token1] = ACTIONS(1191), + [aux_sym_namespace_definition_token1] = ACTIONS(1191), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1191), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1191), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1191), + [anon_sym_BSLASH] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [aux_sym_trait_declaration_token1] = ACTIONS(1191), + [aux_sym_interface_declaration_token1] = ACTIONS(1191), + [aux_sym_class_declaration_token1] = ACTIONS(1191), + [aux_sym_class_modifier_token1] = ACTIONS(1191), + [aux_sym_class_modifier_token2] = ACTIONS(1191), + [aux_sym_visibility_modifier_token1] = ACTIONS(1191), + [aux_sym_visibility_modifier_token2] = ACTIONS(1191), + [aux_sym_visibility_modifier_token3] = ACTIONS(1191), + [aux_sym_arrow_function_token1] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_array] = ACTIONS(1191), + [anon_sym_unset] = ACTIONS(1191), + [aux_sym_echo_statement_token1] = ACTIONS(1191), + [anon_sym_declare] = ACTIONS(1191), + [aux_sym_declare_statement_token1] = ACTIONS(1191), + [sym_float] = ACTIONS(1191), + [aux_sym_try_statement_token1] = ACTIONS(1191), + [aux_sym_goto_statement_token1] = ACTIONS(1191), + [aux_sym_continue_statement_token1] = ACTIONS(1191), + [aux_sym_break_statement_token1] = ACTIONS(1191), + [sym_integer] = ACTIONS(1191), + [aux_sym_return_statement_token1] = ACTIONS(1191), + [aux_sym_throw_expression_token1] = ACTIONS(1191), + [aux_sym_while_statement_token1] = ACTIONS(1191), + [aux_sym_while_statement_token2] = ACTIONS(1191), + [aux_sym_do_statement_token1] = ACTIONS(1191), + [aux_sym_for_statement_token1] = ACTIONS(1191), + [aux_sym_for_statement_token2] = ACTIONS(1191), + [aux_sym_foreach_statement_token1] = ACTIONS(1191), + [aux_sym_foreach_statement_token2] = ACTIONS(1191), + [aux_sym_if_statement_token1] = ACTIONS(1191), + [aux_sym_if_statement_token2] = ACTIONS(1191), + [aux_sym_else_if_clause_token1] = ACTIONS(1191), + [aux_sym_else_clause_token1] = ACTIONS(1191), + [aux_sym_match_expression_token1] = ACTIONS(1191), + [aux_sym_match_default_expression_token1] = ACTIONS(1191), + [aux_sym_switch_statement_token1] = ACTIONS(1191), + [aux_sym_switch_block_token1] = ACTIONS(1191), + [aux_sym_case_statement_token1] = ACTIONS(1191), + [anon_sym_AT] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_clone] = ACTIONS(1191), + [anon_sym_print] = ACTIONS(1191), + [anon_sym_new] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1189), + [sym_shell_command_expression] = ACTIONS(1189), + [anon_sym_list] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_self] = ACTIONS(1191), + [anon_sym_parent] = ACTIONS(1191), + [anon_sym_POUND_LBRACK] = ACTIONS(1189), + [sym_string] = ACTIONS(1189), + [sym_boolean] = ACTIONS(1191), + [sym_null] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1189), + [anon_sym_yield] = ACTIONS(1191), + [aux_sym_include_expression_token1] = ACTIONS(1191), + [aux_sym_include_once_expression_token1] = ACTIONS(1191), + [aux_sym_require_expression_token1] = ACTIONS(1191), + [aux_sym_require_once_expression_token1] = ACTIONS(1191), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1168), + [sym_heredoc] = ACTIONS(1189), }, [478] = { [sym_text_interpolation] = STATE(478), - [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_class_modifier_token1] = ACTIONS(1174), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_name] = ACTIONS(1195), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1193), + [aux_sym_function_static_declaration_token1] = ACTIONS(1195), + [aux_sym_global_declaration_token1] = ACTIONS(1195), + [aux_sym_namespace_definition_token1] = ACTIONS(1195), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1195), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1195), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1195), + [anon_sym_BSLASH] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [aux_sym_trait_declaration_token1] = ACTIONS(1195), + [aux_sym_interface_declaration_token1] = ACTIONS(1195), + [aux_sym_class_declaration_token1] = ACTIONS(1195), + [aux_sym_class_modifier_token1] = ACTIONS(1195), + [aux_sym_class_modifier_token2] = ACTIONS(1195), + [aux_sym_visibility_modifier_token1] = ACTIONS(1195), + [aux_sym_visibility_modifier_token2] = ACTIONS(1195), + [aux_sym_visibility_modifier_token3] = ACTIONS(1195), + [aux_sym_arrow_function_token1] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_array] = ACTIONS(1195), + [anon_sym_unset] = ACTIONS(1195), + [aux_sym_echo_statement_token1] = ACTIONS(1195), + [anon_sym_declare] = ACTIONS(1195), + [aux_sym_declare_statement_token1] = ACTIONS(1195), + [sym_float] = ACTIONS(1195), + [aux_sym_try_statement_token1] = ACTIONS(1195), + [aux_sym_goto_statement_token1] = ACTIONS(1195), + [aux_sym_continue_statement_token1] = ACTIONS(1195), + [aux_sym_break_statement_token1] = ACTIONS(1195), + [sym_integer] = ACTIONS(1195), + [aux_sym_return_statement_token1] = ACTIONS(1195), + [aux_sym_throw_expression_token1] = ACTIONS(1195), + [aux_sym_while_statement_token1] = ACTIONS(1195), + [aux_sym_while_statement_token2] = ACTIONS(1195), + [aux_sym_do_statement_token1] = ACTIONS(1195), + [aux_sym_for_statement_token1] = ACTIONS(1195), + [aux_sym_for_statement_token2] = ACTIONS(1195), + [aux_sym_foreach_statement_token1] = ACTIONS(1195), + [aux_sym_foreach_statement_token2] = ACTIONS(1195), + [aux_sym_if_statement_token1] = ACTIONS(1195), + [aux_sym_if_statement_token2] = ACTIONS(1195), + [aux_sym_else_if_clause_token1] = ACTIONS(1195), + [aux_sym_else_clause_token1] = ACTIONS(1195), + [aux_sym_match_expression_token1] = ACTIONS(1195), + [aux_sym_match_default_expression_token1] = ACTIONS(1195), + [aux_sym_switch_statement_token1] = ACTIONS(1195), + [aux_sym_switch_block_token1] = ACTIONS(1195), + [aux_sym_case_statement_token1] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_clone] = ACTIONS(1195), + [anon_sym_print] = ACTIONS(1195), + [anon_sym_new] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_DASH_DASH] = ACTIONS(1193), + [sym_shell_command_expression] = ACTIONS(1193), + [anon_sym_list] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_self] = ACTIONS(1195), + [anon_sym_parent] = ACTIONS(1195), + [anon_sym_POUND_LBRACK] = ACTIONS(1193), + [sym_string] = ACTIONS(1193), + [sym_boolean] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), + [anon_sym_DOLLAR] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1195), + [aux_sym_include_expression_token1] = ACTIONS(1195), + [aux_sym_include_once_expression_token1] = ACTIONS(1195), + [aux_sym_require_expression_token1] = ACTIONS(1195), + [aux_sym_require_once_expression_token1] = ACTIONS(1195), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1172), + [sym_heredoc] = ACTIONS(1193), }, [479] = { [sym_text_interpolation] = STATE(479), - [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_class_modifier_token1] = ACTIONS(1178), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(898), + [sym_name] = ACTIONS(900), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(898), + [aux_sym_function_static_declaration_token1] = ACTIONS(900), + [aux_sym_global_declaration_token1] = ACTIONS(900), + [aux_sym_namespace_definition_token1] = ACTIONS(900), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(900), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(900), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(900), + [anon_sym_BSLASH] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(898), + [anon_sym_RBRACE] = ACTIONS(898), + [aux_sym_trait_declaration_token1] = ACTIONS(900), + [aux_sym_interface_declaration_token1] = ACTIONS(900), + [aux_sym_class_declaration_token1] = ACTIONS(900), + [aux_sym_class_modifier_token1] = ACTIONS(900), + [aux_sym_class_modifier_token2] = ACTIONS(900), + [aux_sym_visibility_modifier_token1] = ACTIONS(900), + [aux_sym_visibility_modifier_token2] = ACTIONS(900), + [aux_sym_visibility_modifier_token3] = ACTIONS(900), + [aux_sym_arrow_function_token1] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_array] = ACTIONS(900), + [anon_sym_unset] = ACTIONS(900), + [aux_sym_echo_statement_token1] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [aux_sym_declare_statement_token1] = ACTIONS(900), + [sym_float] = ACTIONS(900), + [aux_sym_try_statement_token1] = ACTIONS(900), + [aux_sym_goto_statement_token1] = ACTIONS(900), + [aux_sym_continue_statement_token1] = ACTIONS(900), + [aux_sym_break_statement_token1] = ACTIONS(900), + [sym_integer] = ACTIONS(900), + [aux_sym_return_statement_token1] = ACTIONS(900), + [aux_sym_throw_expression_token1] = ACTIONS(900), + [aux_sym_while_statement_token1] = ACTIONS(900), + [aux_sym_while_statement_token2] = ACTIONS(900), + [aux_sym_do_statement_token1] = ACTIONS(900), + [aux_sym_for_statement_token1] = ACTIONS(900), + [aux_sym_for_statement_token2] = ACTIONS(900), + [aux_sym_foreach_statement_token1] = ACTIONS(900), + [aux_sym_foreach_statement_token2] = ACTIONS(900), + [aux_sym_if_statement_token1] = ACTIONS(900), + [aux_sym_if_statement_token2] = ACTIONS(900), + [aux_sym_else_if_clause_token1] = ACTIONS(900), + [aux_sym_else_clause_token1] = ACTIONS(900), + [aux_sym_match_expression_token1] = ACTIONS(900), + [aux_sym_match_default_expression_token1] = ACTIONS(900), + [aux_sym_switch_statement_token1] = ACTIONS(900), + [aux_sym_switch_block_token1] = ACTIONS(900), + [aux_sym_case_statement_token1] = ACTIONS(900), + [anon_sym_AT] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(898), + [anon_sym_clone] = ACTIONS(900), + [anon_sym_print] = ACTIONS(900), + [anon_sym_new] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_DASH_DASH] = ACTIONS(898), + [sym_shell_command_expression] = ACTIONS(898), + [anon_sym_list] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(898), + [anon_sym_self] = ACTIONS(900), + [anon_sym_parent] = ACTIONS(900), + [anon_sym_POUND_LBRACK] = ACTIONS(898), + [sym_string] = ACTIONS(898), + [sym_boolean] = ACTIONS(900), + [sym_null] = ACTIONS(900), + [anon_sym_DOLLAR] = ACTIONS(898), + [anon_sym_yield] = ACTIONS(900), + [aux_sym_include_expression_token1] = ACTIONS(900), + [aux_sym_include_once_expression_token1] = ACTIONS(900), + [aux_sym_require_expression_token1] = ACTIONS(900), + [aux_sym_require_once_expression_token1] = ACTIONS(900), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1176), + [sym_heredoc] = ACTIONS(898), }, [480] = { [sym_text_interpolation] = STATE(480), - [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_class_modifier_token1] = ACTIONS(1182), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_name] = ACTIONS(1199), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1197), + [aux_sym_function_static_declaration_token1] = ACTIONS(1199), + [aux_sym_global_declaration_token1] = ACTIONS(1199), + [aux_sym_namespace_definition_token1] = ACTIONS(1199), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1199), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1199), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1199), + [anon_sym_BSLASH] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [aux_sym_trait_declaration_token1] = ACTIONS(1199), + [aux_sym_interface_declaration_token1] = ACTIONS(1199), + [aux_sym_class_declaration_token1] = ACTIONS(1199), + [aux_sym_class_modifier_token1] = ACTIONS(1199), + [aux_sym_class_modifier_token2] = ACTIONS(1199), + [aux_sym_visibility_modifier_token1] = ACTIONS(1199), + [aux_sym_visibility_modifier_token2] = ACTIONS(1199), + [aux_sym_visibility_modifier_token3] = ACTIONS(1199), + [aux_sym_arrow_function_token1] = ACTIONS(1199), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_array] = ACTIONS(1199), + [anon_sym_unset] = ACTIONS(1199), + [aux_sym_echo_statement_token1] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [aux_sym_declare_statement_token1] = ACTIONS(1199), + [sym_float] = ACTIONS(1199), + [aux_sym_try_statement_token1] = ACTIONS(1199), + [aux_sym_goto_statement_token1] = ACTIONS(1199), + [aux_sym_continue_statement_token1] = ACTIONS(1199), + [aux_sym_break_statement_token1] = ACTIONS(1199), + [sym_integer] = ACTIONS(1199), + [aux_sym_return_statement_token1] = ACTIONS(1199), + [aux_sym_throw_expression_token1] = ACTIONS(1199), + [aux_sym_while_statement_token1] = ACTIONS(1199), + [aux_sym_while_statement_token2] = ACTIONS(1199), + [aux_sym_do_statement_token1] = ACTIONS(1199), + [aux_sym_for_statement_token1] = ACTIONS(1199), + [aux_sym_for_statement_token2] = ACTIONS(1199), + [aux_sym_foreach_statement_token1] = ACTIONS(1199), + [aux_sym_foreach_statement_token2] = ACTIONS(1199), + [aux_sym_if_statement_token1] = ACTIONS(1199), + [aux_sym_if_statement_token2] = ACTIONS(1199), + [aux_sym_else_if_clause_token1] = ACTIONS(1199), + [aux_sym_else_clause_token1] = ACTIONS(1199), + [aux_sym_match_expression_token1] = ACTIONS(1199), + [aux_sym_match_default_expression_token1] = ACTIONS(1199), + [aux_sym_switch_statement_token1] = ACTIONS(1199), + [aux_sym_switch_block_token1] = ACTIONS(1199), + [aux_sym_case_statement_token1] = ACTIONS(1199), + [anon_sym_AT] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_clone] = ACTIONS(1199), + [anon_sym_print] = ACTIONS(1199), + [anon_sym_new] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [sym_shell_command_expression] = ACTIONS(1197), + [anon_sym_list] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_self] = ACTIONS(1199), + [anon_sym_parent] = ACTIONS(1199), + [anon_sym_POUND_LBRACK] = ACTIONS(1197), + [sym_string] = ACTIONS(1197), + [sym_boolean] = ACTIONS(1199), + [sym_null] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1197), + [anon_sym_yield] = ACTIONS(1199), + [aux_sym_include_expression_token1] = ACTIONS(1199), + [aux_sym_include_once_expression_token1] = ACTIONS(1199), + [aux_sym_require_expression_token1] = ACTIONS(1199), + [aux_sym_require_once_expression_token1] = ACTIONS(1199), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1180), + [sym_heredoc] = ACTIONS(1197), }, [481] = { [sym_text_interpolation] = STATE(481), - [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_class_modifier_token1] = ACTIONS(1186), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_name] = ACTIONS(1203), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1201), + [aux_sym_function_static_declaration_token1] = ACTIONS(1203), + [aux_sym_global_declaration_token1] = ACTIONS(1203), + [aux_sym_namespace_definition_token1] = ACTIONS(1203), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1203), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1203), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1203), + [anon_sym_BSLASH] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [aux_sym_trait_declaration_token1] = ACTIONS(1203), + [aux_sym_interface_declaration_token1] = ACTIONS(1203), + [aux_sym_class_declaration_token1] = ACTIONS(1203), + [aux_sym_class_modifier_token1] = ACTIONS(1203), + [aux_sym_class_modifier_token2] = ACTIONS(1203), + [aux_sym_visibility_modifier_token1] = ACTIONS(1203), + [aux_sym_visibility_modifier_token2] = ACTIONS(1203), + [aux_sym_visibility_modifier_token3] = ACTIONS(1203), + [aux_sym_arrow_function_token1] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_array] = ACTIONS(1203), + [anon_sym_unset] = ACTIONS(1203), + [aux_sym_echo_statement_token1] = ACTIONS(1203), + [anon_sym_declare] = ACTIONS(1203), + [aux_sym_declare_statement_token1] = ACTIONS(1203), + [sym_float] = ACTIONS(1203), + [aux_sym_try_statement_token1] = ACTIONS(1203), + [aux_sym_goto_statement_token1] = ACTIONS(1203), + [aux_sym_continue_statement_token1] = ACTIONS(1203), + [aux_sym_break_statement_token1] = ACTIONS(1203), + [sym_integer] = ACTIONS(1203), + [aux_sym_return_statement_token1] = ACTIONS(1203), + [aux_sym_throw_expression_token1] = ACTIONS(1203), + [aux_sym_while_statement_token1] = ACTIONS(1203), + [aux_sym_while_statement_token2] = ACTIONS(1203), + [aux_sym_do_statement_token1] = ACTIONS(1203), + [aux_sym_for_statement_token1] = ACTIONS(1203), + [aux_sym_for_statement_token2] = ACTIONS(1203), + [aux_sym_foreach_statement_token1] = ACTIONS(1203), + [aux_sym_foreach_statement_token2] = ACTIONS(1203), + [aux_sym_if_statement_token1] = ACTIONS(1203), + [aux_sym_if_statement_token2] = ACTIONS(1203), + [aux_sym_else_if_clause_token1] = ACTIONS(1203), + [aux_sym_else_clause_token1] = ACTIONS(1203), + [aux_sym_match_expression_token1] = ACTIONS(1203), + [aux_sym_match_default_expression_token1] = ACTIONS(1203), + [aux_sym_switch_statement_token1] = ACTIONS(1203), + [aux_sym_switch_block_token1] = ACTIONS(1203), + [aux_sym_case_statement_token1] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_clone] = ACTIONS(1203), + [anon_sym_print] = ACTIONS(1203), + [anon_sym_new] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [sym_shell_command_expression] = ACTIONS(1201), + [anon_sym_list] = ACTIONS(1203), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_self] = ACTIONS(1203), + [anon_sym_parent] = ACTIONS(1203), + [anon_sym_POUND_LBRACK] = ACTIONS(1201), + [sym_string] = ACTIONS(1201), + [sym_boolean] = ACTIONS(1203), + [sym_null] = ACTIONS(1203), + [anon_sym_DOLLAR] = ACTIONS(1201), + [anon_sym_yield] = ACTIONS(1203), + [aux_sym_include_expression_token1] = ACTIONS(1203), + [aux_sym_include_once_expression_token1] = ACTIONS(1203), + [aux_sym_require_expression_token1] = ACTIONS(1203), + [aux_sym_require_once_expression_token1] = ACTIONS(1203), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1184), + [sym_heredoc] = ACTIONS(1201), }, [482] = { [sym_text_interpolation] = STATE(482), - [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_class_modifier_token1] = ACTIONS(1190), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_name] = ACTIONS(1207), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1205), + [aux_sym_function_static_declaration_token1] = ACTIONS(1207), + [aux_sym_global_declaration_token1] = ACTIONS(1207), + [aux_sym_namespace_definition_token1] = ACTIONS(1207), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1207), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1207), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1207), + [anon_sym_BSLASH] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [aux_sym_trait_declaration_token1] = ACTIONS(1207), + [aux_sym_interface_declaration_token1] = ACTIONS(1207), + [aux_sym_class_declaration_token1] = ACTIONS(1207), + [aux_sym_class_modifier_token1] = ACTIONS(1207), + [aux_sym_class_modifier_token2] = ACTIONS(1207), + [aux_sym_visibility_modifier_token1] = ACTIONS(1207), + [aux_sym_visibility_modifier_token2] = ACTIONS(1207), + [aux_sym_visibility_modifier_token3] = ACTIONS(1207), + [aux_sym_arrow_function_token1] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_array] = ACTIONS(1207), + [anon_sym_unset] = ACTIONS(1207), + [aux_sym_echo_statement_token1] = ACTIONS(1207), + [anon_sym_declare] = ACTIONS(1207), + [aux_sym_declare_statement_token1] = ACTIONS(1207), + [sym_float] = ACTIONS(1207), + [aux_sym_try_statement_token1] = ACTIONS(1207), + [aux_sym_goto_statement_token1] = ACTIONS(1207), + [aux_sym_continue_statement_token1] = ACTIONS(1207), + [aux_sym_break_statement_token1] = ACTIONS(1207), + [sym_integer] = ACTIONS(1207), + [aux_sym_return_statement_token1] = ACTIONS(1207), + [aux_sym_throw_expression_token1] = ACTIONS(1207), + [aux_sym_while_statement_token1] = ACTIONS(1207), + [aux_sym_while_statement_token2] = ACTIONS(1207), + [aux_sym_do_statement_token1] = ACTIONS(1207), + [aux_sym_for_statement_token1] = ACTIONS(1207), + [aux_sym_for_statement_token2] = ACTIONS(1207), + [aux_sym_foreach_statement_token1] = ACTIONS(1207), + [aux_sym_foreach_statement_token2] = ACTIONS(1207), + [aux_sym_if_statement_token1] = ACTIONS(1207), + [aux_sym_if_statement_token2] = ACTIONS(1207), + [aux_sym_else_if_clause_token1] = ACTIONS(1207), + [aux_sym_else_clause_token1] = ACTIONS(1207), + [aux_sym_match_expression_token1] = ACTIONS(1207), + [aux_sym_match_default_expression_token1] = ACTIONS(1207), + [aux_sym_switch_statement_token1] = ACTIONS(1207), + [aux_sym_switch_block_token1] = ACTIONS(1207), + [aux_sym_case_statement_token1] = ACTIONS(1207), + [anon_sym_AT] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_clone] = ACTIONS(1207), + [anon_sym_print] = ACTIONS(1207), + [anon_sym_new] = ACTIONS(1207), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [sym_shell_command_expression] = ACTIONS(1205), + [anon_sym_list] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1205), + [anon_sym_self] = ACTIONS(1207), + [anon_sym_parent] = ACTIONS(1207), + [anon_sym_POUND_LBRACK] = ACTIONS(1205), + [sym_string] = ACTIONS(1205), + [sym_boolean] = ACTIONS(1207), + [sym_null] = ACTIONS(1207), + [anon_sym_DOLLAR] = ACTIONS(1205), + [anon_sym_yield] = ACTIONS(1207), + [aux_sym_include_expression_token1] = ACTIONS(1207), + [aux_sym_include_once_expression_token1] = ACTIONS(1207), + [aux_sym_require_expression_token1] = ACTIONS(1207), + [aux_sym_require_once_expression_token1] = ACTIONS(1207), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1188), + [sym_heredoc] = ACTIONS(1205), }, [483] = { [sym_text_interpolation] = STATE(483), - [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_class_modifier_token1] = ACTIONS(1194), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_name] = ACTIONS(1203), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1201), + [aux_sym_function_static_declaration_token1] = ACTIONS(1203), + [aux_sym_global_declaration_token1] = ACTIONS(1203), + [aux_sym_namespace_definition_token1] = ACTIONS(1203), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1203), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1203), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1203), + [anon_sym_BSLASH] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [aux_sym_trait_declaration_token1] = ACTIONS(1203), + [aux_sym_interface_declaration_token1] = ACTIONS(1203), + [aux_sym_class_declaration_token1] = ACTIONS(1203), + [aux_sym_class_modifier_token1] = ACTIONS(1203), + [aux_sym_class_modifier_token2] = ACTIONS(1203), + [aux_sym_visibility_modifier_token1] = ACTIONS(1203), + [aux_sym_visibility_modifier_token2] = ACTIONS(1203), + [aux_sym_visibility_modifier_token3] = ACTIONS(1203), + [aux_sym_arrow_function_token1] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_array] = ACTIONS(1203), + [anon_sym_unset] = ACTIONS(1203), + [aux_sym_echo_statement_token1] = ACTIONS(1203), + [anon_sym_declare] = ACTIONS(1203), + [aux_sym_declare_statement_token1] = ACTIONS(1203), + [sym_float] = ACTIONS(1203), + [aux_sym_try_statement_token1] = ACTIONS(1203), + [aux_sym_goto_statement_token1] = ACTIONS(1203), + [aux_sym_continue_statement_token1] = ACTIONS(1203), + [aux_sym_break_statement_token1] = ACTIONS(1203), + [sym_integer] = ACTIONS(1203), + [aux_sym_return_statement_token1] = ACTIONS(1203), + [aux_sym_throw_expression_token1] = ACTIONS(1203), + [aux_sym_while_statement_token1] = ACTIONS(1203), + [aux_sym_while_statement_token2] = ACTIONS(1203), + [aux_sym_do_statement_token1] = ACTIONS(1203), + [aux_sym_for_statement_token1] = ACTIONS(1203), + [aux_sym_for_statement_token2] = ACTIONS(1203), + [aux_sym_foreach_statement_token1] = ACTIONS(1203), + [aux_sym_foreach_statement_token2] = ACTIONS(1203), + [aux_sym_if_statement_token1] = ACTIONS(1203), + [aux_sym_if_statement_token2] = ACTIONS(1203), + [aux_sym_else_if_clause_token1] = ACTIONS(1203), + [aux_sym_else_clause_token1] = ACTIONS(1203), + [aux_sym_match_expression_token1] = ACTIONS(1203), + [aux_sym_match_default_expression_token1] = ACTIONS(1203), + [aux_sym_switch_statement_token1] = ACTIONS(1203), + [aux_sym_switch_block_token1] = ACTIONS(1203), + [aux_sym_case_statement_token1] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1201), + [anon_sym_clone] = ACTIONS(1203), + [anon_sym_print] = ACTIONS(1203), + [anon_sym_new] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1201), + [sym_shell_command_expression] = ACTIONS(1201), + [anon_sym_list] = ACTIONS(1203), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_self] = ACTIONS(1203), + [anon_sym_parent] = ACTIONS(1203), + [anon_sym_POUND_LBRACK] = ACTIONS(1201), + [sym_string] = ACTIONS(1201), + [sym_boolean] = ACTIONS(1203), + [sym_null] = ACTIONS(1203), + [anon_sym_DOLLAR] = ACTIONS(1201), + [anon_sym_yield] = ACTIONS(1203), + [aux_sym_include_expression_token1] = ACTIONS(1203), + [aux_sym_include_once_expression_token1] = ACTIONS(1203), + [aux_sym_require_expression_token1] = ACTIONS(1203), + [aux_sym_require_once_expression_token1] = ACTIONS(1203), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1192), + [sym_heredoc] = ACTIONS(1201), }, [484] = { [sym_text_interpolation] = STATE(484), - [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_class_modifier_token1] = ACTIONS(1198), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1209), + [sym_name] = ACTIONS(1211), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1209), + [aux_sym_function_static_declaration_token1] = ACTIONS(1211), + [aux_sym_global_declaration_token1] = ACTIONS(1211), + [aux_sym_namespace_definition_token1] = ACTIONS(1211), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1211), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1211), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1211), + [anon_sym_BSLASH] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [aux_sym_trait_declaration_token1] = ACTIONS(1211), + [aux_sym_interface_declaration_token1] = ACTIONS(1211), + [aux_sym_class_declaration_token1] = ACTIONS(1211), + [aux_sym_class_modifier_token1] = ACTIONS(1211), + [aux_sym_class_modifier_token2] = ACTIONS(1211), + [aux_sym_visibility_modifier_token1] = ACTIONS(1211), + [aux_sym_visibility_modifier_token2] = ACTIONS(1211), + [aux_sym_visibility_modifier_token3] = ACTIONS(1211), + [aux_sym_arrow_function_token1] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_array] = ACTIONS(1211), + [anon_sym_unset] = ACTIONS(1211), + [aux_sym_echo_statement_token1] = ACTIONS(1211), + [anon_sym_declare] = ACTIONS(1211), + [aux_sym_declare_statement_token1] = ACTIONS(1211), + [sym_float] = ACTIONS(1211), + [aux_sym_try_statement_token1] = ACTIONS(1211), + [aux_sym_goto_statement_token1] = ACTIONS(1211), + [aux_sym_continue_statement_token1] = ACTIONS(1211), + [aux_sym_break_statement_token1] = ACTIONS(1211), + [sym_integer] = ACTIONS(1211), + [aux_sym_return_statement_token1] = ACTIONS(1211), + [aux_sym_throw_expression_token1] = ACTIONS(1211), + [aux_sym_while_statement_token1] = ACTIONS(1211), + [aux_sym_while_statement_token2] = ACTIONS(1211), + [aux_sym_do_statement_token1] = ACTIONS(1211), + [aux_sym_for_statement_token1] = ACTIONS(1211), + [aux_sym_for_statement_token2] = ACTIONS(1211), + [aux_sym_foreach_statement_token1] = ACTIONS(1211), + [aux_sym_foreach_statement_token2] = ACTIONS(1211), + [aux_sym_if_statement_token1] = ACTIONS(1211), + [aux_sym_if_statement_token2] = ACTIONS(1211), + [aux_sym_else_if_clause_token1] = ACTIONS(1211), + [aux_sym_else_clause_token1] = ACTIONS(1211), + [aux_sym_match_expression_token1] = ACTIONS(1211), + [aux_sym_match_default_expression_token1] = ACTIONS(1211), + [aux_sym_switch_statement_token1] = ACTIONS(1211), + [aux_sym_switch_block_token1] = ACTIONS(1211), + [aux_sym_case_statement_token1] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_clone] = ACTIONS(1211), + [anon_sym_print] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1209), + [sym_shell_command_expression] = ACTIONS(1209), + [anon_sym_list] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_self] = ACTIONS(1211), + [anon_sym_parent] = ACTIONS(1211), + [anon_sym_POUND_LBRACK] = ACTIONS(1209), + [sym_string] = ACTIONS(1209), + [sym_boolean] = ACTIONS(1211), + [sym_null] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_yield] = ACTIONS(1211), + [aux_sym_include_expression_token1] = ACTIONS(1211), + [aux_sym_include_once_expression_token1] = ACTIONS(1211), + [aux_sym_require_expression_token1] = ACTIONS(1211), + [aux_sym_require_once_expression_token1] = ACTIONS(1211), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1196), + [sym_heredoc] = ACTIONS(1209), }, [485] = { [sym_text_interpolation] = STATE(485), - [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_class_modifier_token1] = ACTIONS(1202), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1213), + [sym_name] = ACTIONS(1215), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1213), + [aux_sym_function_static_declaration_token1] = ACTIONS(1215), + [aux_sym_global_declaration_token1] = ACTIONS(1215), + [aux_sym_namespace_definition_token1] = ACTIONS(1215), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1215), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1215), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1215), + [anon_sym_BSLASH] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [aux_sym_trait_declaration_token1] = ACTIONS(1215), + [aux_sym_interface_declaration_token1] = ACTIONS(1215), + [aux_sym_class_declaration_token1] = ACTIONS(1215), + [aux_sym_class_modifier_token1] = ACTIONS(1215), + [aux_sym_class_modifier_token2] = ACTIONS(1215), + [aux_sym_visibility_modifier_token1] = ACTIONS(1215), + [aux_sym_visibility_modifier_token2] = ACTIONS(1215), + [aux_sym_visibility_modifier_token3] = ACTIONS(1215), + [aux_sym_arrow_function_token1] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_array] = ACTIONS(1215), + [anon_sym_unset] = ACTIONS(1215), + [aux_sym_echo_statement_token1] = ACTIONS(1215), + [anon_sym_declare] = ACTIONS(1215), + [aux_sym_declare_statement_token1] = ACTIONS(1215), + [sym_float] = ACTIONS(1215), + [aux_sym_try_statement_token1] = ACTIONS(1215), + [aux_sym_goto_statement_token1] = ACTIONS(1215), + [aux_sym_continue_statement_token1] = ACTIONS(1215), + [aux_sym_break_statement_token1] = ACTIONS(1215), + [sym_integer] = ACTIONS(1215), + [aux_sym_return_statement_token1] = ACTIONS(1215), + [aux_sym_throw_expression_token1] = ACTIONS(1215), + [aux_sym_while_statement_token1] = ACTIONS(1215), + [aux_sym_while_statement_token2] = ACTIONS(1215), + [aux_sym_do_statement_token1] = ACTIONS(1215), + [aux_sym_for_statement_token1] = ACTIONS(1215), + [aux_sym_for_statement_token2] = ACTIONS(1215), + [aux_sym_foreach_statement_token1] = ACTIONS(1215), + [aux_sym_foreach_statement_token2] = ACTIONS(1215), + [aux_sym_if_statement_token1] = ACTIONS(1215), + [aux_sym_if_statement_token2] = ACTIONS(1215), + [aux_sym_else_if_clause_token1] = ACTIONS(1215), + [aux_sym_else_clause_token1] = ACTIONS(1215), + [aux_sym_match_expression_token1] = ACTIONS(1215), + [aux_sym_match_default_expression_token1] = ACTIONS(1215), + [aux_sym_switch_statement_token1] = ACTIONS(1215), + [aux_sym_switch_block_token1] = ACTIONS(1215), + [aux_sym_case_statement_token1] = ACTIONS(1215), + [anon_sym_AT] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_BANG] = ACTIONS(1213), + [anon_sym_clone] = ACTIONS(1215), + [anon_sym_print] = ACTIONS(1215), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1213), + [sym_shell_command_expression] = ACTIONS(1213), + [anon_sym_list] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_self] = ACTIONS(1215), + [anon_sym_parent] = ACTIONS(1215), + [anon_sym_POUND_LBRACK] = ACTIONS(1213), + [sym_string] = ACTIONS(1213), + [sym_boolean] = ACTIONS(1215), + [sym_null] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_yield] = ACTIONS(1215), + [aux_sym_include_expression_token1] = ACTIONS(1215), + [aux_sym_include_once_expression_token1] = ACTIONS(1215), + [aux_sym_require_expression_token1] = ACTIONS(1215), + [aux_sym_require_once_expression_token1] = ACTIONS(1215), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1200), + [sym_heredoc] = ACTIONS(1213), }, [486] = { [sym_text_interpolation] = STATE(486), - [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_class_modifier_token1] = ACTIONS(1206), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1217), + [sym_name] = ACTIONS(1219), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1217), + [aux_sym_function_static_declaration_token1] = ACTIONS(1219), + [aux_sym_global_declaration_token1] = ACTIONS(1219), + [aux_sym_namespace_definition_token1] = ACTIONS(1219), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1219), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1219), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1219), + [anon_sym_BSLASH] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [aux_sym_trait_declaration_token1] = ACTIONS(1219), + [aux_sym_interface_declaration_token1] = ACTIONS(1219), + [aux_sym_class_declaration_token1] = ACTIONS(1219), + [aux_sym_class_modifier_token1] = ACTIONS(1219), + [aux_sym_class_modifier_token2] = ACTIONS(1219), + [aux_sym_visibility_modifier_token1] = ACTIONS(1219), + [aux_sym_visibility_modifier_token2] = ACTIONS(1219), + [aux_sym_visibility_modifier_token3] = ACTIONS(1219), + [aux_sym_arrow_function_token1] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_array] = ACTIONS(1219), + [anon_sym_unset] = ACTIONS(1219), + [aux_sym_echo_statement_token1] = ACTIONS(1219), + [anon_sym_declare] = ACTIONS(1219), + [aux_sym_declare_statement_token1] = ACTIONS(1219), + [sym_float] = ACTIONS(1219), + [aux_sym_try_statement_token1] = ACTIONS(1219), + [aux_sym_goto_statement_token1] = ACTIONS(1219), + [aux_sym_continue_statement_token1] = ACTIONS(1219), + [aux_sym_break_statement_token1] = ACTIONS(1219), + [sym_integer] = ACTIONS(1219), + [aux_sym_return_statement_token1] = ACTIONS(1219), + [aux_sym_throw_expression_token1] = ACTIONS(1219), + [aux_sym_while_statement_token1] = ACTIONS(1219), + [aux_sym_while_statement_token2] = ACTIONS(1219), + [aux_sym_do_statement_token1] = ACTIONS(1219), + [aux_sym_for_statement_token1] = ACTIONS(1219), + [aux_sym_for_statement_token2] = ACTIONS(1219), + [aux_sym_foreach_statement_token1] = ACTIONS(1219), + [aux_sym_foreach_statement_token2] = ACTIONS(1219), + [aux_sym_if_statement_token1] = ACTIONS(1219), + [aux_sym_if_statement_token2] = ACTIONS(1219), + [aux_sym_else_if_clause_token1] = ACTIONS(1219), + [aux_sym_else_clause_token1] = ACTIONS(1219), + [aux_sym_match_expression_token1] = ACTIONS(1219), + [aux_sym_match_default_expression_token1] = ACTIONS(1219), + [aux_sym_switch_statement_token1] = ACTIONS(1219), + [aux_sym_switch_block_token1] = ACTIONS(1219), + [aux_sym_case_statement_token1] = ACTIONS(1219), + [anon_sym_AT] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_clone] = ACTIONS(1219), + [anon_sym_print] = ACTIONS(1219), + [anon_sym_new] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1217), + [sym_shell_command_expression] = ACTIONS(1217), + [anon_sym_list] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_self] = ACTIONS(1219), + [anon_sym_parent] = ACTIONS(1219), + [anon_sym_POUND_LBRACK] = ACTIONS(1217), + [sym_string] = ACTIONS(1217), + [sym_boolean] = ACTIONS(1219), + [sym_null] = ACTIONS(1219), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_yield] = ACTIONS(1219), + [aux_sym_include_expression_token1] = ACTIONS(1219), + [aux_sym_include_once_expression_token1] = ACTIONS(1219), + [aux_sym_require_expression_token1] = ACTIONS(1219), + [aux_sym_require_once_expression_token1] = ACTIONS(1219), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1204), + [sym_heredoc] = ACTIONS(1217), }, [487] = { [sym_text_interpolation] = STATE(487), - [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_class_modifier_token1] = ACTIONS(1210), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1221), + [sym_name] = ACTIONS(1223), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1221), + [aux_sym_function_static_declaration_token1] = ACTIONS(1223), + [aux_sym_global_declaration_token1] = ACTIONS(1223), + [aux_sym_namespace_definition_token1] = ACTIONS(1223), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1223), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1223), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1223), + [anon_sym_BSLASH] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [aux_sym_trait_declaration_token1] = ACTIONS(1223), + [aux_sym_interface_declaration_token1] = ACTIONS(1223), + [aux_sym_class_declaration_token1] = ACTIONS(1223), + [aux_sym_class_modifier_token1] = ACTIONS(1223), + [aux_sym_class_modifier_token2] = ACTIONS(1223), + [aux_sym_visibility_modifier_token1] = ACTIONS(1223), + [aux_sym_visibility_modifier_token2] = ACTIONS(1223), + [aux_sym_visibility_modifier_token3] = ACTIONS(1223), + [aux_sym_arrow_function_token1] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_array] = ACTIONS(1223), + [anon_sym_unset] = ACTIONS(1223), + [aux_sym_echo_statement_token1] = ACTIONS(1223), + [anon_sym_declare] = ACTIONS(1223), + [aux_sym_declare_statement_token1] = ACTIONS(1223), + [sym_float] = ACTIONS(1223), + [aux_sym_try_statement_token1] = ACTIONS(1223), + [aux_sym_goto_statement_token1] = ACTIONS(1223), + [aux_sym_continue_statement_token1] = ACTIONS(1223), + [aux_sym_break_statement_token1] = ACTIONS(1223), + [sym_integer] = ACTIONS(1223), + [aux_sym_return_statement_token1] = ACTIONS(1223), + [aux_sym_throw_expression_token1] = ACTIONS(1223), + [aux_sym_while_statement_token1] = ACTIONS(1223), + [aux_sym_while_statement_token2] = ACTIONS(1223), + [aux_sym_do_statement_token1] = ACTIONS(1223), + [aux_sym_for_statement_token1] = ACTIONS(1223), + [aux_sym_for_statement_token2] = ACTIONS(1223), + [aux_sym_foreach_statement_token1] = ACTIONS(1223), + [aux_sym_foreach_statement_token2] = ACTIONS(1223), + [aux_sym_if_statement_token1] = ACTIONS(1223), + [aux_sym_if_statement_token2] = ACTIONS(1223), + [aux_sym_else_if_clause_token1] = ACTIONS(1223), + [aux_sym_else_clause_token1] = ACTIONS(1223), + [aux_sym_match_expression_token1] = ACTIONS(1223), + [aux_sym_match_default_expression_token1] = ACTIONS(1223), + [aux_sym_switch_statement_token1] = ACTIONS(1223), + [aux_sym_switch_block_token1] = ACTIONS(1223), + [aux_sym_case_statement_token1] = ACTIONS(1223), + [anon_sym_AT] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_clone] = ACTIONS(1223), + [anon_sym_print] = ACTIONS(1223), + [anon_sym_new] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1221), + [sym_shell_command_expression] = ACTIONS(1221), + [anon_sym_list] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_self] = ACTIONS(1223), + [anon_sym_parent] = ACTIONS(1223), + [anon_sym_POUND_LBRACK] = ACTIONS(1221), + [sym_string] = ACTIONS(1221), + [sym_boolean] = ACTIONS(1223), + [sym_null] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_yield] = ACTIONS(1223), + [aux_sym_include_expression_token1] = ACTIONS(1223), + [aux_sym_include_once_expression_token1] = ACTIONS(1223), + [aux_sym_require_expression_token1] = ACTIONS(1223), + [aux_sym_require_once_expression_token1] = ACTIONS(1223), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1208), + [sym_heredoc] = ACTIONS(1221), }, [488] = { [sym_text_interpolation] = STATE(488), - [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_class_modifier_token1] = ACTIONS(1090), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1225), + [sym_name] = ACTIONS(1227), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1225), + [aux_sym_function_static_declaration_token1] = ACTIONS(1227), + [aux_sym_global_declaration_token1] = ACTIONS(1227), + [aux_sym_namespace_definition_token1] = ACTIONS(1227), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1227), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1227), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1227), + [anon_sym_BSLASH] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [aux_sym_trait_declaration_token1] = ACTIONS(1227), + [aux_sym_interface_declaration_token1] = ACTIONS(1227), + [aux_sym_class_declaration_token1] = ACTIONS(1227), + [aux_sym_class_modifier_token1] = ACTIONS(1227), + [aux_sym_class_modifier_token2] = ACTIONS(1227), + [aux_sym_visibility_modifier_token1] = ACTIONS(1227), + [aux_sym_visibility_modifier_token2] = ACTIONS(1227), + [aux_sym_visibility_modifier_token3] = ACTIONS(1227), + [aux_sym_arrow_function_token1] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_array] = ACTIONS(1227), + [anon_sym_unset] = ACTIONS(1227), + [aux_sym_echo_statement_token1] = ACTIONS(1227), + [anon_sym_declare] = ACTIONS(1227), + [aux_sym_declare_statement_token1] = ACTIONS(1227), + [sym_float] = ACTIONS(1227), + [aux_sym_try_statement_token1] = ACTIONS(1227), + [aux_sym_goto_statement_token1] = ACTIONS(1227), + [aux_sym_continue_statement_token1] = ACTIONS(1227), + [aux_sym_break_statement_token1] = ACTIONS(1227), + [sym_integer] = ACTIONS(1227), + [aux_sym_return_statement_token1] = ACTIONS(1227), + [aux_sym_throw_expression_token1] = ACTIONS(1227), + [aux_sym_while_statement_token1] = ACTIONS(1227), + [aux_sym_while_statement_token2] = ACTIONS(1227), + [aux_sym_do_statement_token1] = ACTIONS(1227), + [aux_sym_for_statement_token1] = ACTIONS(1227), + [aux_sym_for_statement_token2] = ACTIONS(1227), + [aux_sym_foreach_statement_token1] = ACTIONS(1227), + [aux_sym_foreach_statement_token2] = ACTIONS(1227), + [aux_sym_if_statement_token1] = ACTIONS(1227), + [aux_sym_if_statement_token2] = ACTIONS(1227), + [aux_sym_else_if_clause_token1] = ACTIONS(1227), + [aux_sym_else_clause_token1] = ACTIONS(1227), + [aux_sym_match_expression_token1] = ACTIONS(1227), + [aux_sym_match_default_expression_token1] = ACTIONS(1227), + [aux_sym_switch_statement_token1] = ACTIONS(1227), + [aux_sym_switch_block_token1] = ACTIONS(1227), + [aux_sym_case_statement_token1] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_clone] = ACTIONS(1227), + [anon_sym_print] = ACTIONS(1227), + [anon_sym_new] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [sym_shell_command_expression] = ACTIONS(1225), + [anon_sym_list] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_self] = ACTIONS(1227), + [anon_sym_parent] = ACTIONS(1227), + [anon_sym_POUND_LBRACK] = ACTIONS(1225), + [sym_string] = ACTIONS(1225), + [sym_boolean] = ACTIONS(1227), + [sym_null] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_yield] = ACTIONS(1227), + [aux_sym_include_expression_token1] = ACTIONS(1227), + [aux_sym_include_once_expression_token1] = ACTIONS(1227), + [aux_sym_require_expression_token1] = ACTIONS(1227), + [aux_sym_require_once_expression_token1] = ACTIONS(1227), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1088), + [sym_heredoc] = ACTIONS(1225), }, [489] = { [sym_text_interpolation] = STATE(489), - [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_class_modifier_token1] = ACTIONS(1214), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1229), + [sym_name] = ACTIONS(1231), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1229), + [aux_sym_function_static_declaration_token1] = ACTIONS(1231), + [aux_sym_global_declaration_token1] = ACTIONS(1231), + [aux_sym_namespace_definition_token1] = ACTIONS(1231), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1231), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1231), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1231), + [anon_sym_BSLASH] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [aux_sym_trait_declaration_token1] = ACTIONS(1231), + [aux_sym_interface_declaration_token1] = ACTIONS(1231), + [aux_sym_class_declaration_token1] = ACTIONS(1231), + [aux_sym_class_modifier_token1] = ACTIONS(1231), + [aux_sym_class_modifier_token2] = ACTIONS(1231), + [aux_sym_visibility_modifier_token1] = ACTIONS(1231), + [aux_sym_visibility_modifier_token2] = ACTIONS(1231), + [aux_sym_visibility_modifier_token3] = ACTIONS(1231), + [aux_sym_arrow_function_token1] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_array] = ACTIONS(1231), + [anon_sym_unset] = ACTIONS(1231), + [aux_sym_echo_statement_token1] = ACTIONS(1231), + [anon_sym_declare] = ACTIONS(1231), + [aux_sym_declare_statement_token1] = ACTIONS(1231), + [sym_float] = ACTIONS(1231), + [aux_sym_try_statement_token1] = ACTIONS(1231), + [aux_sym_goto_statement_token1] = ACTIONS(1231), + [aux_sym_continue_statement_token1] = ACTIONS(1231), + [aux_sym_break_statement_token1] = ACTIONS(1231), + [sym_integer] = ACTIONS(1231), + [aux_sym_return_statement_token1] = ACTIONS(1231), + [aux_sym_throw_expression_token1] = ACTIONS(1231), + [aux_sym_while_statement_token1] = ACTIONS(1231), + [aux_sym_while_statement_token2] = ACTIONS(1231), + [aux_sym_do_statement_token1] = ACTIONS(1231), + [aux_sym_for_statement_token1] = ACTIONS(1231), + [aux_sym_for_statement_token2] = ACTIONS(1231), + [aux_sym_foreach_statement_token1] = ACTIONS(1231), + [aux_sym_foreach_statement_token2] = ACTIONS(1231), + [aux_sym_if_statement_token1] = ACTIONS(1231), + [aux_sym_if_statement_token2] = ACTIONS(1231), + [aux_sym_else_if_clause_token1] = ACTIONS(1231), + [aux_sym_else_clause_token1] = ACTIONS(1231), + [aux_sym_match_expression_token1] = ACTIONS(1231), + [aux_sym_match_default_expression_token1] = ACTIONS(1231), + [aux_sym_switch_statement_token1] = ACTIONS(1231), + [aux_sym_switch_block_token1] = ACTIONS(1231), + [aux_sym_case_statement_token1] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_clone] = ACTIONS(1231), + [anon_sym_print] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1229), + [sym_shell_command_expression] = ACTIONS(1229), + [anon_sym_list] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_self] = ACTIONS(1231), + [anon_sym_parent] = ACTIONS(1231), + [anon_sym_POUND_LBRACK] = ACTIONS(1229), + [sym_string] = ACTIONS(1229), + [sym_boolean] = ACTIONS(1231), + [sym_null] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_yield] = ACTIONS(1231), + [aux_sym_include_expression_token1] = ACTIONS(1231), + [aux_sym_include_once_expression_token1] = ACTIONS(1231), + [aux_sym_require_expression_token1] = ACTIONS(1231), + [aux_sym_require_once_expression_token1] = ACTIONS(1231), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1212), + [sym_heredoc] = ACTIONS(1229), }, [490] = { [sym_text_interpolation] = STATE(490), - [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_class_modifier_token1] = ACTIONS(1218), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_name] = ACTIONS(1235), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1233), + [aux_sym_function_static_declaration_token1] = ACTIONS(1235), + [aux_sym_global_declaration_token1] = ACTIONS(1235), + [aux_sym_namespace_definition_token1] = ACTIONS(1235), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1235), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1235), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1235), + [anon_sym_BSLASH] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [aux_sym_trait_declaration_token1] = ACTIONS(1235), + [aux_sym_interface_declaration_token1] = ACTIONS(1235), + [aux_sym_class_declaration_token1] = ACTIONS(1235), + [aux_sym_class_modifier_token1] = ACTIONS(1235), + [aux_sym_class_modifier_token2] = ACTIONS(1235), + [aux_sym_visibility_modifier_token1] = ACTIONS(1235), + [aux_sym_visibility_modifier_token2] = ACTIONS(1235), + [aux_sym_visibility_modifier_token3] = ACTIONS(1235), + [aux_sym_arrow_function_token1] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_array] = ACTIONS(1235), + [anon_sym_unset] = ACTIONS(1235), + [aux_sym_echo_statement_token1] = ACTIONS(1235), + [anon_sym_declare] = ACTIONS(1235), + [aux_sym_declare_statement_token1] = ACTIONS(1235), + [sym_float] = ACTIONS(1235), + [aux_sym_try_statement_token1] = ACTIONS(1235), + [aux_sym_goto_statement_token1] = ACTIONS(1235), + [aux_sym_continue_statement_token1] = ACTIONS(1235), + [aux_sym_break_statement_token1] = ACTIONS(1235), + [sym_integer] = ACTIONS(1235), + [aux_sym_return_statement_token1] = ACTIONS(1235), + [aux_sym_throw_expression_token1] = ACTIONS(1235), + [aux_sym_while_statement_token1] = ACTIONS(1235), + [aux_sym_while_statement_token2] = ACTIONS(1235), + [aux_sym_do_statement_token1] = ACTIONS(1235), + [aux_sym_for_statement_token1] = ACTIONS(1235), + [aux_sym_for_statement_token2] = ACTIONS(1235), + [aux_sym_foreach_statement_token1] = ACTIONS(1235), + [aux_sym_foreach_statement_token2] = ACTIONS(1235), + [aux_sym_if_statement_token1] = ACTIONS(1235), + [aux_sym_if_statement_token2] = ACTIONS(1235), + [aux_sym_else_if_clause_token1] = ACTIONS(1235), + [aux_sym_else_clause_token1] = ACTIONS(1235), + [aux_sym_match_expression_token1] = ACTIONS(1235), + [aux_sym_match_default_expression_token1] = ACTIONS(1235), + [aux_sym_switch_statement_token1] = ACTIONS(1235), + [aux_sym_switch_block_token1] = ACTIONS(1235), + [aux_sym_case_statement_token1] = ACTIONS(1235), + [anon_sym_AT] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1233), + [anon_sym_clone] = ACTIONS(1235), + [anon_sym_print] = ACTIONS(1235), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1233), + [sym_shell_command_expression] = ACTIONS(1233), + [anon_sym_list] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_self] = ACTIONS(1235), + [anon_sym_parent] = ACTIONS(1235), + [anon_sym_POUND_LBRACK] = ACTIONS(1233), + [sym_string] = ACTIONS(1233), + [sym_boolean] = ACTIONS(1235), + [sym_null] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [aux_sym_include_expression_token1] = ACTIONS(1235), + [aux_sym_include_once_expression_token1] = ACTIONS(1235), + [aux_sym_require_expression_token1] = ACTIONS(1235), + [aux_sym_require_once_expression_token1] = ACTIONS(1235), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1216), + [sym_heredoc] = ACTIONS(1233), }, [491] = { [sym_text_interpolation] = STATE(491), - [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_class_modifier_token1] = ACTIONS(1222), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1237), + [sym_name] = ACTIONS(1239), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1237), + [aux_sym_function_static_declaration_token1] = ACTIONS(1239), + [aux_sym_global_declaration_token1] = ACTIONS(1239), + [aux_sym_namespace_definition_token1] = ACTIONS(1239), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1239), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1239), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1239), + [anon_sym_BSLASH] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [aux_sym_trait_declaration_token1] = ACTIONS(1239), + [aux_sym_interface_declaration_token1] = ACTIONS(1239), + [aux_sym_class_declaration_token1] = ACTIONS(1239), + [aux_sym_class_modifier_token1] = ACTIONS(1239), + [aux_sym_class_modifier_token2] = ACTIONS(1239), + [aux_sym_visibility_modifier_token1] = ACTIONS(1239), + [aux_sym_visibility_modifier_token2] = ACTIONS(1239), + [aux_sym_visibility_modifier_token3] = ACTIONS(1239), + [aux_sym_arrow_function_token1] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_array] = ACTIONS(1239), + [anon_sym_unset] = ACTIONS(1239), + [aux_sym_echo_statement_token1] = ACTIONS(1239), + [anon_sym_declare] = ACTIONS(1239), + [aux_sym_declare_statement_token1] = ACTIONS(1239), + [sym_float] = ACTIONS(1239), + [aux_sym_try_statement_token1] = ACTIONS(1239), + [aux_sym_goto_statement_token1] = ACTIONS(1239), + [aux_sym_continue_statement_token1] = ACTIONS(1239), + [aux_sym_break_statement_token1] = ACTIONS(1239), + [sym_integer] = ACTIONS(1239), + [aux_sym_return_statement_token1] = ACTIONS(1239), + [aux_sym_throw_expression_token1] = ACTIONS(1239), + [aux_sym_while_statement_token1] = ACTIONS(1239), + [aux_sym_while_statement_token2] = ACTIONS(1239), + [aux_sym_do_statement_token1] = ACTIONS(1239), + [aux_sym_for_statement_token1] = ACTIONS(1239), + [aux_sym_for_statement_token2] = ACTIONS(1239), + [aux_sym_foreach_statement_token1] = ACTIONS(1239), + [aux_sym_foreach_statement_token2] = ACTIONS(1239), + [aux_sym_if_statement_token1] = ACTIONS(1239), + [aux_sym_if_statement_token2] = ACTIONS(1239), + [aux_sym_else_if_clause_token1] = ACTIONS(1239), + [aux_sym_else_clause_token1] = ACTIONS(1239), + [aux_sym_match_expression_token1] = ACTIONS(1239), + [aux_sym_match_default_expression_token1] = ACTIONS(1239), + [aux_sym_switch_statement_token1] = ACTIONS(1239), + [aux_sym_switch_block_token1] = ACTIONS(1239), + [aux_sym_case_statement_token1] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1237), + [anon_sym_clone] = ACTIONS(1239), + [anon_sym_print] = ACTIONS(1239), + [anon_sym_new] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [sym_shell_command_expression] = ACTIONS(1237), + [anon_sym_list] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_self] = ACTIONS(1239), + [anon_sym_parent] = ACTIONS(1239), + [anon_sym_POUND_LBRACK] = ACTIONS(1237), + [sym_string] = ACTIONS(1237), + [sym_boolean] = ACTIONS(1239), + [sym_null] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1237), + [anon_sym_yield] = ACTIONS(1239), + [aux_sym_include_expression_token1] = ACTIONS(1239), + [aux_sym_include_once_expression_token1] = ACTIONS(1239), + [aux_sym_require_expression_token1] = ACTIONS(1239), + [aux_sym_require_once_expression_token1] = ACTIONS(1239), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1220), + [sym_heredoc] = ACTIONS(1237), }, [492] = { [sym_text_interpolation] = STATE(492), - [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_class_modifier_token1] = ACTIONS(1226), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_name] = ACTIONS(1243), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1241), + [aux_sym_function_static_declaration_token1] = ACTIONS(1243), + [aux_sym_global_declaration_token1] = ACTIONS(1243), + [aux_sym_namespace_definition_token1] = ACTIONS(1243), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1243), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1243), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1243), + [anon_sym_BSLASH] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [aux_sym_trait_declaration_token1] = ACTIONS(1243), + [aux_sym_interface_declaration_token1] = ACTIONS(1243), + [aux_sym_class_declaration_token1] = ACTIONS(1243), + [aux_sym_class_modifier_token1] = ACTIONS(1243), + [aux_sym_class_modifier_token2] = ACTIONS(1243), + [aux_sym_visibility_modifier_token1] = ACTIONS(1243), + [aux_sym_visibility_modifier_token2] = ACTIONS(1243), + [aux_sym_visibility_modifier_token3] = ACTIONS(1243), + [aux_sym_arrow_function_token1] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_array] = ACTIONS(1243), + [anon_sym_unset] = ACTIONS(1243), + [aux_sym_echo_statement_token1] = ACTIONS(1243), + [anon_sym_declare] = ACTIONS(1243), + [aux_sym_declare_statement_token1] = ACTIONS(1243), + [sym_float] = ACTIONS(1243), + [aux_sym_try_statement_token1] = ACTIONS(1243), + [aux_sym_goto_statement_token1] = ACTIONS(1243), + [aux_sym_continue_statement_token1] = ACTIONS(1243), + [aux_sym_break_statement_token1] = ACTIONS(1243), + [sym_integer] = ACTIONS(1243), + [aux_sym_return_statement_token1] = ACTIONS(1243), + [aux_sym_throw_expression_token1] = ACTIONS(1243), + [aux_sym_while_statement_token1] = ACTIONS(1243), + [aux_sym_while_statement_token2] = ACTIONS(1243), + [aux_sym_do_statement_token1] = ACTIONS(1243), + [aux_sym_for_statement_token1] = ACTIONS(1243), + [aux_sym_for_statement_token2] = ACTIONS(1243), + [aux_sym_foreach_statement_token1] = ACTIONS(1243), + [aux_sym_foreach_statement_token2] = ACTIONS(1243), + [aux_sym_if_statement_token1] = ACTIONS(1243), + [aux_sym_if_statement_token2] = ACTIONS(1243), + [aux_sym_else_if_clause_token1] = ACTIONS(1243), + [aux_sym_else_clause_token1] = ACTIONS(1243), + [aux_sym_match_expression_token1] = ACTIONS(1243), + [aux_sym_match_default_expression_token1] = ACTIONS(1243), + [aux_sym_switch_statement_token1] = ACTIONS(1243), + [aux_sym_switch_block_token1] = ACTIONS(1243), + [aux_sym_case_statement_token1] = ACTIONS(1243), + [anon_sym_AT] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_clone] = ACTIONS(1243), + [anon_sym_print] = ACTIONS(1243), + [anon_sym_new] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1241), + [sym_shell_command_expression] = ACTIONS(1241), + [anon_sym_list] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_self] = ACTIONS(1243), + [anon_sym_parent] = ACTIONS(1243), + [anon_sym_POUND_LBRACK] = ACTIONS(1241), + [sym_string] = ACTIONS(1241), + [sym_boolean] = ACTIONS(1243), + [sym_null] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1243), + [aux_sym_include_expression_token1] = ACTIONS(1243), + [aux_sym_include_once_expression_token1] = ACTIONS(1243), + [aux_sym_require_expression_token1] = ACTIONS(1243), + [aux_sym_require_once_expression_token1] = ACTIONS(1243), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1224), + [sym_heredoc] = ACTIONS(1241), }, [493] = { [sym_text_interpolation] = STATE(493), - [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_class_modifier_token1] = ACTIONS(1230), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_name] = ACTIONS(1247), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1245), + [aux_sym_function_static_declaration_token1] = ACTIONS(1247), + [aux_sym_global_declaration_token1] = ACTIONS(1247), + [aux_sym_namespace_definition_token1] = ACTIONS(1247), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1247), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1247), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1247), + [anon_sym_BSLASH] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [aux_sym_trait_declaration_token1] = ACTIONS(1247), + [aux_sym_interface_declaration_token1] = ACTIONS(1247), + [aux_sym_class_declaration_token1] = ACTIONS(1247), + [aux_sym_class_modifier_token1] = ACTIONS(1247), + [aux_sym_class_modifier_token2] = ACTIONS(1247), + [aux_sym_visibility_modifier_token1] = ACTIONS(1247), + [aux_sym_visibility_modifier_token2] = ACTIONS(1247), + [aux_sym_visibility_modifier_token3] = ACTIONS(1247), + [aux_sym_arrow_function_token1] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_array] = ACTIONS(1247), + [anon_sym_unset] = ACTIONS(1247), + [aux_sym_echo_statement_token1] = ACTIONS(1247), + [anon_sym_declare] = ACTIONS(1247), + [aux_sym_declare_statement_token1] = ACTIONS(1247), + [sym_float] = ACTIONS(1247), + [aux_sym_try_statement_token1] = ACTIONS(1247), + [aux_sym_goto_statement_token1] = ACTIONS(1247), + [aux_sym_continue_statement_token1] = ACTIONS(1247), + [aux_sym_break_statement_token1] = ACTIONS(1247), + [sym_integer] = ACTIONS(1247), + [aux_sym_return_statement_token1] = ACTIONS(1247), + [aux_sym_throw_expression_token1] = ACTIONS(1247), + [aux_sym_while_statement_token1] = ACTIONS(1247), + [aux_sym_while_statement_token2] = ACTIONS(1247), + [aux_sym_do_statement_token1] = ACTIONS(1247), + [aux_sym_for_statement_token1] = ACTIONS(1247), + [aux_sym_for_statement_token2] = ACTIONS(1247), + [aux_sym_foreach_statement_token1] = ACTIONS(1247), + [aux_sym_foreach_statement_token2] = ACTIONS(1247), + [aux_sym_if_statement_token1] = ACTIONS(1247), + [aux_sym_if_statement_token2] = ACTIONS(1247), + [aux_sym_else_if_clause_token1] = ACTIONS(1247), + [aux_sym_else_clause_token1] = ACTIONS(1247), + [aux_sym_match_expression_token1] = ACTIONS(1247), + [aux_sym_match_default_expression_token1] = ACTIONS(1247), + [aux_sym_switch_statement_token1] = ACTIONS(1247), + [aux_sym_switch_block_token1] = ACTIONS(1247), + [aux_sym_case_statement_token1] = ACTIONS(1247), + [anon_sym_AT] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1245), + [anon_sym_clone] = ACTIONS(1247), + [anon_sym_print] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1245), + [sym_shell_command_expression] = ACTIONS(1245), + [anon_sym_list] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_self] = ACTIONS(1247), + [anon_sym_parent] = ACTIONS(1247), + [anon_sym_POUND_LBRACK] = ACTIONS(1245), + [sym_string] = ACTIONS(1245), + [sym_boolean] = ACTIONS(1247), + [sym_null] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_yield] = ACTIONS(1247), + [aux_sym_include_expression_token1] = ACTIONS(1247), + [aux_sym_include_once_expression_token1] = ACTIONS(1247), + [aux_sym_require_expression_token1] = ACTIONS(1247), + [aux_sym_require_once_expression_token1] = ACTIONS(1247), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1228), + [sym_heredoc] = ACTIONS(1245), }, [494] = { [sym_text_interpolation] = STATE(494), - [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_class_modifier_token1] = ACTIONS(1234), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_name] = ACTIONS(1251), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1249), + [aux_sym_function_static_declaration_token1] = ACTIONS(1251), + [aux_sym_global_declaration_token1] = ACTIONS(1251), + [aux_sym_namespace_definition_token1] = ACTIONS(1251), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1251), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1251), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1251), + [anon_sym_BSLASH] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [aux_sym_trait_declaration_token1] = ACTIONS(1251), + [aux_sym_interface_declaration_token1] = ACTIONS(1251), + [aux_sym_class_declaration_token1] = ACTIONS(1251), + [aux_sym_class_modifier_token1] = ACTIONS(1251), + [aux_sym_class_modifier_token2] = ACTIONS(1251), + [aux_sym_visibility_modifier_token1] = ACTIONS(1251), + [aux_sym_visibility_modifier_token2] = ACTIONS(1251), + [aux_sym_visibility_modifier_token3] = ACTIONS(1251), + [aux_sym_arrow_function_token1] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_array] = ACTIONS(1251), + [anon_sym_unset] = ACTIONS(1251), + [aux_sym_echo_statement_token1] = ACTIONS(1251), + [anon_sym_declare] = ACTIONS(1251), + [aux_sym_declare_statement_token1] = ACTIONS(1251), + [sym_float] = ACTIONS(1251), + [aux_sym_try_statement_token1] = ACTIONS(1251), + [aux_sym_goto_statement_token1] = ACTIONS(1251), + [aux_sym_continue_statement_token1] = ACTIONS(1251), + [aux_sym_break_statement_token1] = ACTIONS(1251), + [sym_integer] = ACTIONS(1251), + [aux_sym_return_statement_token1] = ACTIONS(1251), + [aux_sym_throw_expression_token1] = ACTIONS(1251), + [aux_sym_while_statement_token1] = ACTIONS(1251), + [aux_sym_while_statement_token2] = ACTIONS(1251), + [aux_sym_do_statement_token1] = ACTIONS(1251), + [aux_sym_for_statement_token1] = ACTIONS(1251), + [aux_sym_for_statement_token2] = ACTIONS(1251), + [aux_sym_foreach_statement_token1] = ACTIONS(1251), + [aux_sym_foreach_statement_token2] = ACTIONS(1251), + [aux_sym_if_statement_token1] = ACTIONS(1251), + [aux_sym_if_statement_token2] = ACTIONS(1251), + [aux_sym_else_if_clause_token1] = ACTIONS(1251), + [aux_sym_else_clause_token1] = ACTIONS(1251), + [aux_sym_match_expression_token1] = ACTIONS(1251), + [aux_sym_match_default_expression_token1] = ACTIONS(1251), + [aux_sym_switch_statement_token1] = ACTIONS(1251), + [aux_sym_switch_block_token1] = ACTIONS(1251), + [aux_sym_case_statement_token1] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_clone] = ACTIONS(1251), + [anon_sym_print] = ACTIONS(1251), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1249), + [sym_shell_command_expression] = ACTIONS(1249), + [anon_sym_list] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_self] = ACTIONS(1251), + [anon_sym_parent] = ACTIONS(1251), + [anon_sym_POUND_LBRACK] = ACTIONS(1249), + [sym_string] = ACTIONS(1249), + [sym_boolean] = ACTIONS(1251), + [sym_null] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_yield] = ACTIONS(1251), + [aux_sym_include_expression_token1] = ACTIONS(1251), + [aux_sym_include_once_expression_token1] = ACTIONS(1251), + [aux_sym_require_expression_token1] = ACTIONS(1251), + [aux_sym_require_once_expression_token1] = ACTIONS(1251), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1232), + [sym_heredoc] = ACTIONS(1249), }, [495] = { [sym_text_interpolation] = STATE(495), - [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_class_modifier_token1] = ACTIONS(1238), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_name] = ACTIONS(1255), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1253), + [aux_sym_function_static_declaration_token1] = ACTIONS(1255), + [aux_sym_global_declaration_token1] = ACTIONS(1255), + [aux_sym_namespace_definition_token1] = ACTIONS(1255), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1255), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1255), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1255), + [anon_sym_BSLASH] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [aux_sym_trait_declaration_token1] = ACTIONS(1255), + [aux_sym_interface_declaration_token1] = ACTIONS(1255), + [aux_sym_class_declaration_token1] = ACTIONS(1255), + [aux_sym_class_modifier_token1] = ACTIONS(1255), + [aux_sym_class_modifier_token2] = ACTIONS(1255), + [aux_sym_visibility_modifier_token1] = ACTIONS(1255), + [aux_sym_visibility_modifier_token2] = ACTIONS(1255), + [aux_sym_visibility_modifier_token3] = ACTIONS(1255), + [aux_sym_arrow_function_token1] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_array] = ACTIONS(1255), + [anon_sym_unset] = ACTIONS(1255), + [aux_sym_echo_statement_token1] = ACTIONS(1255), + [anon_sym_declare] = ACTIONS(1255), + [aux_sym_declare_statement_token1] = ACTIONS(1255), + [sym_float] = ACTIONS(1255), + [aux_sym_try_statement_token1] = ACTIONS(1255), + [aux_sym_goto_statement_token1] = ACTIONS(1255), + [aux_sym_continue_statement_token1] = ACTIONS(1255), + [aux_sym_break_statement_token1] = ACTIONS(1255), + [sym_integer] = ACTIONS(1255), + [aux_sym_return_statement_token1] = ACTIONS(1255), + [aux_sym_throw_expression_token1] = ACTIONS(1255), + [aux_sym_while_statement_token1] = ACTIONS(1255), + [aux_sym_while_statement_token2] = ACTIONS(1255), + [aux_sym_do_statement_token1] = ACTIONS(1255), + [aux_sym_for_statement_token1] = ACTIONS(1255), + [aux_sym_for_statement_token2] = ACTIONS(1255), + [aux_sym_foreach_statement_token1] = ACTIONS(1255), + [aux_sym_foreach_statement_token2] = ACTIONS(1255), + [aux_sym_if_statement_token1] = ACTIONS(1255), + [aux_sym_if_statement_token2] = ACTIONS(1255), + [aux_sym_else_if_clause_token1] = ACTIONS(1255), + [aux_sym_else_clause_token1] = ACTIONS(1255), + [aux_sym_match_expression_token1] = ACTIONS(1255), + [aux_sym_match_default_expression_token1] = ACTIONS(1255), + [aux_sym_switch_statement_token1] = ACTIONS(1255), + [aux_sym_switch_block_token1] = ACTIONS(1255), + [aux_sym_case_statement_token1] = ACTIONS(1255), + [anon_sym_AT] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_clone] = ACTIONS(1255), + [anon_sym_print] = ACTIONS(1255), + [anon_sym_new] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [sym_shell_command_expression] = ACTIONS(1253), + [anon_sym_list] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_self] = ACTIONS(1255), + [anon_sym_parent] = ACTIONS(1255), + [anon_sym_POUND_LBRACK] = ACTIONS(1253), + [sym_string] = ACTIONS(1253), + [sym_boolean] = ACTIONS(1255), + [sym_null] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_yield] = ACTIONS(1255), + [aux_sym_include_expression_token1] = ACTIONS(1255), + [aux_sym_include_once_expression_token1] = ACTIONS(1255), + [aux_sym_require_expression_token1] = ACTIONS(1255), + [aux_sym_require_once_expression_token1] = ACTIONS(1255), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1236), + [sym_heredoc] = ACTIONS(1253), }, [496] = { [sym_text_interpolation] = STATE(496), - [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_class_modifier_token1] = ACTIONS(1242), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(963), + [sym_name] = ACTIONS(965), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(963), + [aux_sym_function_static_declaration_token1] = ACTIONS(965), + [aux_sym_global_declaration_token1] = ACTIONS(965), + [aux_sym_namespace_definition_token1] = ACTIONS(965), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(965), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(965), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(965), + [anon_sym_BSLASH] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [aux_sym_trait_declaration_token1] = ACTIONS(965), + [aux_sym_interface_declaration_token1] = ACTIONS(965), + [aux_sym_class_declaration_token1] = ACTIONS(965), + [aux_sym_class_modifier_token1] = ACTIONS(965), + [aux_sym_class_modifier_token2] = ACTIONS(965), + [aux_sym_visibility_modifier_token1] = ACTIONS(965), + [aux_sym_visibility_modifier_token2] = ACTIONS(965), + [aux_sym_visibility_modifier_token3] = ACTIONS(965), + [aux_sym_arrow_function_token1] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_array] = ACTIONS(965), + [anon_sym_unset] = ACTIONS(965), + [aux_sym_echo_statement_token1] = ACTIONS(965), + [anon_sym_declare] = ACTIONS(965), + [aux_sym_declare_statement_token1] = ACTIONS(965), + [sym_float] = ACTIONS(965), + [aux_sym_try_statement_token1] = ACTIONS(965), + [aux_sym_goto_statement_token1] = ACTIONS(965), + [aux_sym_continue_statement_token1] = ACTIONS(965), + [aux_sym_break_statement_token1] = ACTIONS(965), + [sym_integer] = ACTIONS(965), + [aux_sym_return_statement_token1] = ACTIONS(965), + [aux_sym_throw_expression_token1] = ACTIONS(965), + [aux_sym_while_statement_token1] = ACTIONS(965), + [aux_sym_while_statement_token2] = ACTIONS(965), + [aux_sym_do_statement_token1] = ACTIONS(965), + [aux_sym_for_statement_token1] = ACTIONS(965), + [aux_sym_for_statement_token2] = ACTIONS(965), + [aux_sym_foreach_statement_token1] = ACTIONS(965), + [aux_sym_foreach_statement_token2] = ACTIONS(965), + [aux_sym_if_statement_token1] = ACTIONS(965), + [aux_sym_if_statement_token2] = ACTIONS(965), + [aux_sym_else_if_clause_token1] = ACTIONS(965), + [aux_sym_else_clause_token1] = ACTIONS(965), + [aux_sym_match_expression_token1] = ACTIONS(965), + [aux_sym_match_default_expression_token1] = ACTIONS(965), + [aux_sym_switch_statement_token1] = ACTIONS(965), + [aux_sym_switch_block_token1] = ACTIONS(965), + [aux_sym_case_statement_token1] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_clone] = ACTIONS(965), + [anon_sym_print] = ACTIONS(965), + [anon_sym_new] = ACTIONS(965), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [sym_shell_command_expression] = ACTIONS(963), + [anon_sym_list] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_self] = ACTIONS(965), + [anon_sym_parent] = ACTIONS(965), + [anon_sym_POUND_LBRACK] = ACTIONS(963), + [sym_string] = ACTIONS(963), + [sym_boolean] = ACTIONS(965), + [sym_null] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_yield] = ACTIONS(965), + [aux_sym_include_expression_token1] = ACTIONS(965), + [aux_sym_include_once_expression_token1] = ACTIONS(965), + [aux_sym_require_expression_token1] = ACTIONS(965), + [aux_sym_require_once_expression_token1] = ACTIONS(965), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1240), + [sym_heredoc] = ACTIONS(963), }, [497] = { [sym_text_interpolation] = STATE(497), - [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_class_modifier_token1] = ACTIONS(1246), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_name] = ACTIONS(1259), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1257), + [aux_sym_function_static_declaration_token1] = ACTIONS(1259), + [aux_sym_global_declaration_token1] = ACTIONS(1259), + [aux_sym_namespace_definition_token1] = ACTIONS(1259), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1259), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1259), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1259), + [anon_sym_BSLASH] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [aux_sym_trait_declaration_token1] = ACTIONS(1259), + [aux_sym_interface_declaration_token1] = ACTIONS(1259), + [aux_sym_class_declaration_token1] = ACTIONS(1259), + [aux_sym_class_modifier_token1] = ACTIONS(1259), + [aux_sym_class_modifier_token2] = ACTIONS(1259), + [aux_sym_visibility_modifier_token1] = ACTIONS(1259), + [aux_sym_visibility_modifier_token2] = ACTIONS(1259), + [aux_sym_visibility_modifier_token3] = ACTIONS(1259), + [aux_sym_arrow_function_token1] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_array] = ACTIONS(1259), + [anon_sym_unset] = ACTIONS(1259), + [aux_sym_echo_statement_token1] = ACTIONS(1259), + [anon_sym_declare] = ACTIONS(1259), + [aux_sym_declare_statement_token1] = ACTIONS(1259), + [sym_float] = ACTIONS(1259), + [aux_sym_try_statement_token1] = ACTIONS(1259), + [aux_sym_goto_statement_token1] = ACTIONS(1259), + [aux_sym_continue_statement_token1] = ACTIONS(1259), + [aux_sym_break_statement_token1] = ACTIONS(1259), + [sym_integer] = ACTIONS(1259), + [aux_sym_return_statement_token1] = ACTIONS(1259), + [aux_sym_throw_expression_token1] = ACTIONS(1259), + [aux_sym_while_statement_token1] = ACTIONS(1259), + [aux_sym_while_statement_token2] = ACTIONS(1259), + [aux_sym_do_statement_token1] = ACTIONS(1259), + [aux_sym_for_statement_token1] = ACTIONS(1259), + [aux_sym_for_statement_token2] = ACTIONS(1259), + [aux_sym_foreach_statement_token1] = ACTIONS(1259), + [aux_sym_foreach_statement_token2] = ACTIONS(1259), + [aux_sym_if_statement_token1] = ACTIONS(1259), + [aux_sym_if_statement_token2] = ACTIONS(1259), + [aux_sym_else_if_clause_token1] = ACTIONS(1259), + [aux_sym_else_clause_token1] = ACTIONS(1259), + [aux_sym_match_expression_token1] = ACTIONS(1259), + [aux_sym_match_default_expression_token1] = ACTIONS(1259), + [aux_sym_switch_statement_token1] = ACTIONS(1259), + [aux_sym_switch_block_token1] = ACTIONS(1259), + [aux_sym_case_statement_token1] = ACTIONS(1259), + [anon_sym_AT] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_clone] = ACTIONS(1259), + [anon_sym_print] = ACTIONS(1259), + [anon_sym_new] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [sym_shell_command_expression] = ACTIONS(1257), + [anon_sym_list] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_self] = ACTIONS(1259), + [anon_sym_parent] = ACTIONS(1259), + [anon_sym_POUND_LBRACK] = ACTIONS(1257), + [sym_string] = ACTIONS(1257), + [sym_boolean] = ACTIONS(1259), + [sym_null] = ACTIONS(1259), + [anon_sym_DOLLAR] = ACTIONS(1257), + [anon_sym_yield] = ACTIONS(1259), + [aux_sym_include_expression_token1] = ACTIONS(1259), + [aux_sym_include_once_expression_token1] = ACTIONS(1259), + [aux_sym_require_expression_token1] = ACTIONS(1259), + [aux_sym_require_once_expression_token1] = ACTIONS(1259), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1244), + [sym_heredoc] = ACTIONS(1257), }, [498] = { [sym_text_interpolation] = STATE(498), - [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_class_modifier_token1] = ACTIONS(1250), - [aux_sym_class_modifier_token2] = 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), - [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), + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_name] = ACTIONS(1263), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1261), + [aux_sym_function_static_declaration_token1] = ACTIONS(1263), + [aux_sym_global_declaration_token1] = ACTIONS(1263), + [aux_sym_namespace_definition_token1] = ACTIONS(1263), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1263), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1263), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1263), + [anon_sym_BSLASH] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [aux_sym_trait_declaration_token1] = ACTIONS(1263), + [aux_sym_interface_declaration_token1] = ACTIONS(1263), + [aux_sym_class_declaration_token1] = ACTIONS(1263), + [aux_sym_class_modifier_token1] = ACTIONS(1263), + [aux_sym_class_modifier_token2] = ACTIONS(1263), + [aux_sym_visibility_modifier_token1] = ACTIONS(1263), + [aux_sym_visibility_modifier_token2] = ACTIONS(1263), + [aux_sym_visibility_modifier_token3] = ACTIONS(1263), + [aux_sym_arrow_function_token1] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_array] = ACTIONS(1263), + [anon_sym_unset] = ACTIONS(1263), + [aux_sym_echo_statement_token1] = ACTIONS(1263), + [anon_sym_declare] = ACTIONS(1263), + [aux_sym_declare_statement_token1] = ACTIONS(1263), + [sym_float] = ACTIONS(1263), + [aux_sym_try_statement_token1] = ACTIONS(1263), + [aux_sym_goto_statement_token1] = ACTIONS(1263), + [aux_sym_continue_statement_token1] = ACTIONS(1263), + [aux_sym_break_statement_token1] = ACTIONS(1263), + [sym_integer] = ACTIONS(1263), + [aux_sym_return_statement_token1] = ACTIONS(1263), + [aux_sym_throw_expression_token1] = ACTIONS(1263), + [aux_sym_while_statement_token1] = ACTIONS(1263), + [aux_sym_while_statement_token2] = ACTIONS(1263), + [aux_sym_do_statement_token1] = ACTIONS(1263), + [aux_sym_for_statement_token1] = ACTIONS(1263), + [aux_sym_for_statement_token2] = ACTIONS(1263), + [aux_sym_foreach_statement_token1] = ACTIONS(1263), + [aux_sym_foreach_statement_token2] = ACTIONS(1263), + [aux_sym_if_statement_token1] = ACTIONS(1263), + [aux_sym_if_statement_token2] = ACTIONS(1263), + [aux_sym_else_if_clause_token1] = ACTIONS(1263), + [aux_sym_else_clause_token1] = ACTIONS(1263), + [aux_sym_match_expression_token1] = ACTIONS(1263), + [aux_sym_match_default_expression_token1] = ACTIONS(1263), + [aux_sym_switch_statement_token1] = ACTIONS(1263), + [aux_sym_switch_block_token1] = ACTIONS(1263), + [aux_sym_case_statement_token1] = ACTIONS(1263), + [anon_sym_AT] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_clone] = ACTIONS(1263), + [anon_sym_print] = ACTIONS(1263), + [anon_sym_new] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [sym_shell_command_expression] = ACTIONS(1261), + [anon_sym_list] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_self] = ACTIONS(1263), + [anon_sym_parent] = ACTIONS(1263), + [anon_sym_POUND_LBRACK] = ACTIONS(1261), + [sym_string] = ACTIONS(1261), + [sym_boolean] = ACTIONS(1263), + [sym_null] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1261), + [anon_sym_yield] = ACTIONS(1263), + [aux_sym_include_expression_token1] = ACTIONS(1263), + [aux_sym_include_once_expression_token1] = ACTIONS(1263), + [aux_sym_require_expression_token1] = ACTIONS(1263), + [aux_sym_require_once_expression_token1] = ACTIONS(1263), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1248), + [sym_heredoc] = ACTIONS(1261), }, [499] = { [sym_text_interpolation] = STATE(499), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1895), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__unary_expression] = STATE(723), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(840), - [sym__primary_expression] = STATE(840), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(527), - [sym_member_access_expression] = STATE(527), - [sym_nullsafe_member_access_expression] = STATE(527), - [sym_scoped_property_access_expression] = STATE(527), - [sym_function_call_expression] = STATE(513), - [sym_scoped_call_expression] = STATE(513), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(513), - [sym_nullsafe_member_call_expression] = STATE(513), - [sym_subscript_expression] = STATE(513), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(513), - [sym_variable_name] = STATE(513), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(597), - [anon_sym_AT] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_clone] = ACTIONS(605), - [anon_sym_print] = ACTIONS(607), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_name] = ACTIONS(1267), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1265), + [aux_sym_function_static_declaration_token1] = ACTIONS(1267), + [aux_sym_global_declaration_token1] = ACTIONS(1267), + [aux_sym_namespace_definition_token1] = ACTIONS(1267), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1267), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1267), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1267), + [anon_sym_BSLASH] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [aux_sym_trait_declaration_token1] = ACTIONS(1267), + [aux_sym_interface_declaration_token1] = ACTIONS(1267), + [aux_sym_class_declaration_token1] = ACTIONS(1267), + [aux_sym_class_modifier_token1] = ACTIONS(1267), + [aux_sym_class_modifier_token2] = ACTIONS(1267), + [aux_sym_visibility_modifier_token1] = ACTIONS(1267), + [aux_sym_visibility_modifier_token2] = ACTIONS(1267), + [aux_sym_visibility_modifier_token3] = ACTIONS(1267), + [aux_sym_arrow_function_token1] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_array] = ACTIONS(1267), + [anon_sym_unset] = ACTIONS(1267), + [aux_sym_echo_statement_token1] = ACTIONS(1267), + [anon_sym_declare] = ACTIONS(1267), + [aux_sym_declare_statement_token1] = ACTIONS(1267), + [sym_float] = ACTIONS(1267), + [aux_sym_try_statement_token1] = ACTIONS(1267), + [aux_sym_goto_statement_token1] = ACTIONS(1267), + [aux_sym_continue_statement_token1] = ACTIONS(1267), + [aux_sym_break_statement_token1] = ACTIONS(1267), + [sym_integer] = ACTIONS(1267), + [aux_sym_return_statement_token1] = ACTIONS(1267), + [aux_sym_throw_expression_token1] = ACTIONS(1267), + [aux_sym_while_statement_token1] = ACTIONS(1267), + [aux_sym_while_statement_token2] = ACTIONS(1267), + [aux_sym_do_statement_token1] = ACTIONS(1267), + [aux_sym_for_statement_token1] = ACTIONS(1267), + [aux_sym_for_statement_token2] = ACTIONS(1267), + [aux_sym_foreach_statement_token1] = ACTIONS(1267), + [aux_sym_foreach_statement_token2] = ACTIONS(1267), + [aux_sym_if_statement_token1] = ACTIONS(1267), + [aux_sym_if_statement_token2] = ACTIONS(1267), + [aux_sym_else_if_clause_token1] = ACTIONS(1267), + [aux_sym_else_clause_token1] = ACTIONS(1267), + [aux_sym_match_expression_token1] = ACTIONS(1267), + [aux_sym_match_default_expression_token1] = ACTIONS(1267), + [aux_sym_switch_statement_token1] = ACTIONS(1267), + [aux_sym_switch_block_token1] = ACTIONS(1267), + [aux_sym_case_statement_token1] = ACTIONS(1267), + [anon_sym_AT] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_clone] = ACTIONS(1267), + [anon_sym_print] = ACTIONS(1267), + [anon_sym_new] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [sym_shell_command_expression] = ACTIONS(1265), + [anon_sym_list] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_self] = ACTIONS(1267), + [anon_sym_parent] = ACTIONS(1267), + [anon_sym_POUND_LBRACK] = ACTIONS(1265), + [sym_string] = ACTIONS(1265), + [sym_boolean] = ACTIONS(1267), + [sym_null] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_yield] = ACTIONS(1267), + [aux_sym_include_expression_token1] = ACTIONS(1267), + [aux_sym_include_once_expression_token1] = ACTIONS(1267), + [aux_sym_require_expression_token1] = ACTIONS(1267), + [aux_sym_require_once_expression_token1] = ACTIONS(1267), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_heredoc] = ACTIONS(1265), }, [500] = { [sym_text_interpolation] = STATE(500), - [sym_qualified_name] = STATE(672), - [sym_namespace_name_as_prefix] = STATE(1299), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1904), - [sym_arrow_function] = STATE(845), - [sym_throw_expression] = STATE(845), - [sym__unary_expression] = STATE(842), - [sym_unary_op_expression] = STATE(850), - [sym_exponentiation_expression] = STATE(850), - [sym_clone_expression] = STATE(851), - [sym__primary_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(657), - [sym_class_constant_access_expression] = STATE(714), - [sym_print_intrinsic] = STATE(845), - [sym_anonymous_function_creation_expression] = STATE(845), - [sym_object_creation_expression] = STATE(845), - [sym_update_expression] = STATE(845), - [sym_cast_expression] = STATE(850), - [sym_cast_variable] = STATE(569), - [sym_member_access_expression] = STATE(569), - [sym_nullsafe_member_access_expression] = STATE(569), - [sym_scoped_property_access_expression] = STATE(569), - [sym_function_call_expression] = STATE(535), - [sym_scoped_call_expression] = STATE(535), - [sym__scope_resolution_qualifier] = STATE(1898), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(535), - [sym_nullsafe_member_call_expression] = STATE(535), - [sym_subscript_expression] = STATE(535), - [sym__dereferencable_expression] = STATE(1301), - [sym_array_creation_expression] = STATE(657), - [sym__string] = STATE(657), - [sym_dynamic_variable_name] = STATE(535), - [sym_variable_name] = STATE(535), - [sym__reserved_identifier] = STATE(653), - [sym_name] = ACTIONS(623), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(625), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(627), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(212), - [anon_sym_LPAREN] = ACTIONS(214), - [anon_sym_array] = ACTIONS(216), - [sym_float] = ACTIONS(224), - [sym_integer] = ACTIONS(224), - [aux_sym_throw_expression_token1] = ACTIONS(236), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(256), - [anon_sym_DASH] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_clone] = ACTIONS(260), - [anon_sym_print] = ACTIONS(262), - [anon_sym_new] = ACTIONS(264), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [sym_shell_command_expression] = ACTIONS(268), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_self] = ACTIONS(274), - [anon_sym_parent] = ACTIONS(274), - [sym_string] = ACTIONS(276), - [sym_boolean] = ACTIONS(224), - [sym_null] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(278), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_name] = ACTIONS(1267), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1265), + [aux_sym_function_static_declaration_token1] = ACTIONS(1267), + [aux_sym_global_declaration_token1] = ACTIONS(1267), + [aux_sym_namespace_definition_token1] = ACTIONS(1267), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1267), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1267), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1267), + [anon_sym_BSLASH] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [aux_sym_trait_declaration_token1] = ACTIONS(1267), + [aux_sym_interface_declaration_token1] = ACTIONS(1267), + [aux_sym_class_declaration_token1] = ACTIONS(1267), + [aux_sym_class_modifier_token1] = ACTIONS(1267), + [aux_sym_class_modifier_token2] = ACTIONS(1267), + [aux_sym_visibility_modifier_token1] = ACTIONS(1267), + [aux_sym_visibility_modifier_token2] = ACTIONS(1267), + [aux_sym_visibility_modifier_token3] = ACTIONS(1267), + [aux_sym_arrow_function_token1] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_array] = ACTIONS(1267), + [anon_sym_unset] = ACTIONS(1267), + [aux_sym_echo_statement_token1] = ACTIONS(1267), + [anon_sym_declare] = ACTIONS(1267), + [aux_sym_declare_statement_token1] = ACTIONS(1267), + [sym_float] = ACTIONS(1267), + [aux_sym_try_statement_token1] = ACTIONS(1267), + [aux_sym_goto_statement_token1] = ACTIONS(1267), + [aux_sym_continue_statement_token1] = ACTIONS(1267), + [aux_sym_break_statement_token1] = ACTIONS(1267), + [sym_integer] = ACTIONS(1267), + [aux_sym_return_statement_token1] = ACTIONS(1267), + [aux_sym_throw_expression_token1] = ACTIONS(1267), + [aux_sym_while_statement_token1] = ACTIONS(1267), + [aux_sym_while_statement_token2] = ACTIONS(1267), + [aux_sym_do_statement_token1] = ACTIONS(1267), + [aux_sym_for_statement_token1] = ACTIONS(1267), + [aux_sym_for_statement_token2] = ACTIONS(1267), + [aux_sym_foreach_statement_token1] = ACTIONS(1267), + [aux_sym_foreach_statement_token2] = ACTIONS(1267), + [aux_sym_if_statement_token1] = ACTIONS(1267), + [aux_sym_if_statement_token2] = ACTIONS(1267), + [aux_sym_else_if_clause_token1] = ACTIONS(1267), + [aux_sym_else_clause_token1] = ACTIONS(1267), + [aux_sym_match_expression_token1] = ACTIONS(1267), + [aux_sym_match_default_expression_token1] = ACTIONS(1267), + [aux_sym_switch_statement_token1] = ACTIONS(1267), + [aux_sym_switch_block_token1] = ACTIONS(1267), + [aux_sym_case_statement_token1] = ACTIONS(1267), + [anon_sym_AT] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_clone] = ACTIONS(1267), + [anon_sym_print] = ACTIONS(1267), + [anon_sym_new] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [sym_shell_command_expression] = ACTIONS(1265), + [anon_sym_list] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_self] = ACTIONS(1267), + [anon_sym_parent] = ACTIONS(1267), + [anon_sym_POUND_LBRACK] = ACTIONS(1265), + [sym_string] = ACTIONS(1265), + [sym_boolean] = ACTIONS(1267), + [sym_null] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1265), + [anon_sym_yield] = ACTIONS(1267), + [aux_sym_include_expression_token1] = ACTIONS(1267), + [aux_sym_include_once_expression_token1] = ACTIONS(1267), + [aux_sym_require_expression_token1] = ACTIONS(1267), + [aux_sym_require_once_expression_token1] = ACTIONS(1267), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(276), + [sym_heredoc] = ACTIONS(1265), }, [501] = { [sym_text_interpolation] = STATE(501), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__unary_expression] = STATE(723), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(568), - [sym_member_access_expression] = STATE(568), - [sym_nullsafe_member_access_expression] = STATE(568), - [sym_scoped_property_access_expression] = STATE(568), - [sym_function_call_expression] = STATE(539), - [sym_scoped_call_expression] = STATE(539), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(539), - [sym_nullsafe_member_call_expression] = STATE(539), - [sym_subscript_expression] = STATE(539), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(539), - [sym_variable_name] = STATE(539), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_name] = ACTIONS(1271), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1269), + [aux_sym_function_static_declaration_token1] = ACTIONS(1271), + [aux_sym_global_declaration_token1] = ACTIONS(1271), + [aux_sym_namespace_definition_token1] = ACTIONS(1271), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1271), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1271), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1271), + [anon_sym_BSLASH] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [aux_sym_trait_declaration_token1] = ACTIONS(1271), + [aux_sym_interface_declaration_token1] = ACTIONS(1271), + [aux_sym_class_declaration_token1] = ACTIONS(1271), + [aux_sym_class_modifier_token1] = ACTIONS(1271), + [aux_sym_class_modifier_token2] = ACTIONS(1271), + [aux_sym_visibility_modifier_token1] = ACTIONS(1271), + [aux_sym_visibility_modifier_token2] = ACTIONS(1271), + [aux_sym_visibility_modifier_token3] = ACTIONS(1271), + [aux_sym_arrow_function_token1] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_array] = ACTIONS(1271), + [anon_sym_unset] = ACTIONS(1271), + [aux_sym_echo_statement_token1] = ACTIONS(1271), + [anon_sym_declare] = ACTIONS(1271), + [aux_sym_declare_statement_token1] = ACTIONS(1271), + [sym_float] = ACTIONS(1271), + [aux_sym_try_statement_token1] = ACTIONS(1271), + [aux_sym_goto_statement_token1] = ACTIONS(1271), + [aux_sym_continue_statement_token1] = ACTIONS(1271), + [aux_sym_break_statement_token1] = ACTIONS(1271), + [sym_integer] = ACTIONS(1271), + [aux_sym_return_statement_token1] = ACTIONS(1271), + [aux_sym_throw_expression_token1] = ACTIONS(1271), + [aux_sym_while_statement_token1] = ACTIONS(1271), + [aux_sym_while_statement_token2] = ACTIONS(1271), + [aux_sym_do_statement_token1] = ACTIONS(1271), + [aux_sym_for_statement_token1] = ACTIONS(1271), + [aux_sym_for_statement_token2] = ACTIONS(1271), + [aux_sym_foreach_statement_token1] = ACTIONS(1271), + [aux_sym_foreach_statement_token2] = ACTIONS(1271), + [aux_sym_if_statement_token1] = ACTIONS(1271), + [aux_sym_if_statement_token2] = ACTIONS(1271), + [aux_sym_else_if_clause_token1] = ACTIONS(1271), + [aux_sym_else_clause_token1] = ACTIONS(1271), + [aux_sym_match_expression_token1] = ACTIONS(1271), + [aux_sym_match_default_expression_token1] = ACTIONS(1271), + [aux_sym_switch_statement_token1] = ACTIONS(1271), + [aux_sym_switch_block_token1] = ACTIONS(1271), + [aux_sym_case_statement_token1] = ACTIONS(1271), + [anon_sym_AT] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_clone] = ACTIONS(1271), + [anon_sym_print] = ACTIONS(1271), + [anon_sym_new] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [sym_shell_command_expression] = ACTIONS(1269), + [anon_sym_list] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_self] = ACTIONS(1271), + [anon_sym_parent] = ACTIONS(1271), + [anon_sym_POUND_LBRACK] = ACTIONS(1269), + [sym_string] = ACTIONS(1269), + [sym_boolean] = ACTIONS(1271), + [sym_null] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1269), + [anon_sym_yield] = ACTIONS(1271), + [aux_sym_include_expression_token1] = ACTIONS(1271), + [aux_sym_include_once_expression_token1] = ACTIONS(1271), + [aux_sym_require_expression_token1] = ACTIONS(1271), + [aux_sym_require_once_expression_token1] = ACTIONS(1271), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_heredoc] = ACTIONS(1269), }, [502] = { [sym_text_interpolation] = STATE(502), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1848), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__unary_expression] = STATE(723), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(792), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(527), - [sym_member_access_expression] = STATE(527), - [sym_nullsafe_member_access_expression] = STATE(527), - [sym_scoped_property_access_expression] = STATE(527), - [sym_function_call_expression] = STATE(513), - [sym_scoped_call_expression] = STATE(513), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(513), - [sym_nullsafe_member_call_expression] = STATE(513), - [sym_subscript_expression] = STATE(513), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(513), - [sym_variable_name] = STATE(513), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_clone] = ACTIONS(559), - [anon_sym_print] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_name] = ACTIONS(1275), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1273), + [aux_sym_function_static_declaration_token1] = ACTIONS(1275), + [aux_sym_global_declaration_token1] = ACTIONS(1275), + [aux_sym_namespace_definition_token1] = ACTIONS(1275), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1275), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1275), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1275), + [anon_sym_BSLASH] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [aux_sym_trait_declaration_token1] = ACTIONS(1275), + [aux_sym_interface_declaration_token1] = ACTIONS(1275), + [aux_sym_class_declaration_token1] = ACTIONS(1275), + [aux_sym_class_modifier_token1] = ACTIONS(1275), + [aux_sym_class_modifier_token2] = ACTIONS(1275), + [aux_sym_visibility_modifier_token1] = ACTIONS(1275), + [aux_sym_visibility_modifier_token2] = ACTIONS(1275), + [aux_sym_visibility_modifier_token3] = ACTIONS(1275), + [aux_sym_arrow_function_token1] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_array] = ACTIONS(1275), + [anon_sym_unset] = ACTIONS(1275), + [aux_sym_echo_statement_token1] = ACTIONS(1275), + [anon_sym_declare] = ACTIONS(1275), + [aux_sym_declare_statement_token1] = ACTIONS(1275), + [sym_float] = ACTIONS(1275), + [aux_sym_try_statement_token1] = ACTIONS(1275), + [aux_sym_goto_statement_token1] = ACTIONS(1275), + [aux_sym_continue_statement_token1] = ACTIONS(1275), + [aux_sym_break_statement_token1] = ACTIONS(1275), + [sym_integer] = ACTIONS(1275), + [aux_sym_return_statement_token1] = ACTIONS(1275), + [aux_sym_throw_expression_token1] = ACTIONS(1275), + [aux_sym_while_statement_token1] = ACTIONS(1275), + [aux_sym_while_statement_token2] = ACTIONS(1275), + [aux_sym_do_statement_token1] = ACTIONS(1275), + [aux_sym_for_statement_token1] = ACTIONS(1275), + [aux_sym_for_statement_token2] = ACTIONS(1275), + [aux_sym_foreach_statement_token1] = ACTIONS(1275), + [aux_sym_foreach_statement_token2] = ACTIONS(1275), + [aux_sym_if_statement_token1] = ACTIONS(1275), + [aux_sym_if_statement_token2] = ACTIONS(1275), + [aux_sym_else_if_clause_token1] = ACTIONS(1275), + [aux_sym_else_clause_token1] = ACTIONS(1275), + [aux_sym_match_expression_token1] = ACTIONS(1275), + [aux_sym_match_default_expression_token1] = ACTIONS(1275), + [aux_sym_switch_statement_token1] = ACTIONS(1275), + [aux_sym_switch_block_token1] = ACTIONS(1275), + [aux_sym_case_statement_token1] = ACTIONS(1275), + [anon_sym_AT] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_clone] = ACTIONS(1275), + [anon_sym_print] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [sym_shell_command_expression] = ACTIONS(1273), + [anon_sym_list] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_self] = ACTIONS(1275), + [anon_sym_parent] = ACTIONS(1275), + [anon_sym_POUND_LBRACK] = ACTIONS(1273), + [sym_string] = ACTIONS(1273), + [sym_boolean] = ACTIONS(1275), + [sym_null] = ACTIONS(1275), + [anon_sym_DOLLAR] = ACTIONS(1273), + [anon_sym_yield] = ACTIONS(1275), + [aux_sym_include_expression_token1] = ACTIONS(1275), + [aux_sym_include_once_expression_token1] = ACTIONS(1275), + [aux_sym_require_expression_token1] = ACTIONS(1275), + [aux_sym_require_once_expression_token1] = ACTIONS(1275), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_heredoc] = ACTIONS(1273), }, [503] = { [sym_text_interpolation] = STATE(503), - [sym_name] = ACTIONS(1256), - [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1258), - [aux_sym_function_static_declaration_token1] = ACTIONS(1256), - [aux_sym_global_declaration_token1] = ACTIONS(1256), - [aux_sym_namespace_definition_token1] = ACTIONS(1256), - [aux_sym_namespace_use_declaration_token1] = ACTIONS(1256), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(1256), - [aux_sym_namespace_use_declaration_token3] = ACTIONS(1256), - [anon_sym_BSLASH] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1258), - [aux_sym_trait_declaration_token1] = ACTIONS(1256), - [aux_sym_interface_declaration_token1] = ACTIONS(1256), - [aux_sym_class_declaration_token1] = ACTIONS(1256), - [aux_sym_class_modifier_token1] = ACTIONS(1256), - [aux_sym_class_modifier_token2] = ACTIONS(1256), - [aux_sym_visibility_modifier_token1] = ACTIONS(1256), - [aux_sym_visibility_modifier_token2] = ACTIONS(1256), - [aux_sym_visibility_modifier_token3] = ACTIONS(1256), - [aux_sym_arrow_function_token1] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1258), - [anon_sym_array] = ACTIONS(1256), - [anon_sym_unset] = ACTIONS(1256), - [anon_sym_COLON] = ACTIONS(1258), - [aux_sym_echo_statement_token1] = ACTIONS(1256), - [anon_sym_declare] = ACTIONS(1256), - [sym_float] = ACTIONS(1256), - [aux_sym_try_statement_token1] = ACTIONS(1256), - [aux_sym_goto_statement_token1] = ACTIONS(1256), - [aux_sym_continue_statement_token1] = ACTIONS(1256), - [aux_sym_break_statement_token1] = ACTIONS(1256), - [sym_integer] = ACTIONS(1256), - [aux_sym_return_statement_token1] = ACTIONS(1256), - [aux_sym_throw_expression_token1] = ACTIONS(1256), - [aux_sym_while_statement_token1] = ACTIONS(1256), - [aux_sym_do_statement_token1] = ACTIONS(1256), - [aux_sym_for_statement_token1] = ACTIONS(1256), - [aux_sym_foreach_statement_token1] = ACTIONS(1256), - [aux_sym_if_statement_token1] = ACTIONS(1256), - [aux_sym_match_expression_token1] = ACTIONS(1256), - [aux_sym_switch_statement_token1] = ACTIONS(1256), - [anon_sym_AT] = ACTIONS(1258), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_clone] = ACTIONS(1256), - [anon_sym_print] = ACTIONS(1256), - [anon_sym_new] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [sym_shell_command_expression] = ACTIONS(1258), - [anon_sym_list] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_self] = ACTIONS(1256), - [anon_sym_parent] = ACTIONS(1256), - [sym_string] = ACTIONS(1258), - [sym_boolean] = ACTIONS(1256), - [sym_null] = ACTIONS(1256), - [anon_sym_DOLLAR] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1256), - [aux_sym_include_expression_token1] = ACTIONS(1256), - [aux_sym_include_once_expression_token1] = ACTIONS(1256), - [aux_sym_require_expression_token1] = ACTIONS(1256), - [aux_sym_require_once_expression_token1] = ACTIONS(1256), + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_name] = ACTIONS(1279), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1277), + [aux_sym_function_static_declaration_token1] = ACTIONS(1279), + [aux_sym_global_declaration_token1] = ACTIONS(1279), + [aux_sym_namespace_definition_token1] = ACTIONS(1279), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1279), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1279), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1279), + [anon_sym_BSLASH] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [aux_sym_trait_declaration_token1] = ACTIONS(1279), + [aux_sym_interface_declaration_token1] = ACTIONS(1279), + [aux_sym_class_declaration_token1] = ACTIONS(1279), + [aux_sym_class_modifier_token1] = ACTIONS(1279), + [aux_sym_class_modifier_token2] = ACTIONS(1279), + [aux_sym_visibility_modifier_token1] = ACTIONS(1279), + [aux_sym_visibility_modifier_token2] = ACTIONS(1279), + [aux_sym_visibility_modifier_token3] = ACTIONS(1279), + [aux_sym_arrow_function_token1] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_array] = ACTIONS(1279), + [anon_sym_unset] = ACTIONS(1279), + [aux_sym_echo_statement_token1] = ACTIONS(1279), + [anon_sym_declare] = ACTIONS(1279), + [aux_sym_declare_statement_token1] = ACTIONS(1279), + [sym_float] = ACTIONS(1279), + [aux_sym_try_statement_token1] = ACTIONS(1279), + [aux_sym_goto_statement_token1] = ACTIONS(1279), + [aux_sym_continue_statement_token1] = ACTIONS(1279), + [aux_sym_break_statement_token1] = ACTIONS(1279), + [sym_integer] = ACTIONS(1279), + [aux_sym_return_statement_token1] = ACTIONS(1279), + [aux_sym_throw_expression_token1] = ACTIONS(1279), + [aux_sym_while_statement_token1] = ACTIONS(1279), + [aux_sym_while_statement_token2] = ACTIONS(1279), + [aux_sym_do_statement_token1] = ACTIONS(1279), + [aux_sym_for_statement_token1] = ACTIONS(1279), + [aux_sym_for_statement_token2] = ACTIONS(1279), + [aux_sym_foreach_statement_token1] = ACTIONS(1279), + [aux_sym_foreach_statement_token2] = ACTIONS(1279), + [aux_sym_if_statement_token1] = ACTIONS(1279), + [aux_sym_if_statement_token2] = ACTIONS(1279), + [aux_sym_else_if_clause_token1] = ACTIONS(1279), + [aux_sym_else_clause_token1] = ACTIONS(1279), + [aux_sym_match_expression_token1] = ACTIONS(1279), + [aux_sym_match_default_expression_token1] = ACTIONS(1279), + [aux_sym_switch_statement_token1] = ACTIONS(1279), + [aux_sym_switch_block_token1] = ACTIONS(1279), + [aux_sym_case_statement_token1] = ACTIONS(1279), + [anon_sym_AT] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_clone] = ACTIONS(1279), + [anon_sym_print] = ACTIONS(1279), + [anon_sym_new] = ACTIONS(1279), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [sym_shell_command_expression] = ACTIONS(1277), + [anon_sym_list] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_self] = ACTIONS(1279), + [anon_sym_parent] = ACTIONS(1279), + [anon_sym_POUND_LBRACK] = ACTIONS(1277), + [sym_string] = ACTIONS(1277), + [sym_boolean] = ACTIONS(1279), + [sym_null] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1277), + [anon_sym_yield] = ACTIONS(1279), + [aux_sym_include_expression_token1] = ACTIONS(1279), + [aux_sym_include_once_expression_token1] = ACTIONS(1279), + [aux_sym_require_expression_token1] = ACTIONS(1279), + [aux_sym_require_once_expression_token1] = ACTIONS(1279), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(1258), + [sym_heredoc] = ACTIONS(1277), }, [504] = { [sym_text_interpolation] = STATE(504), - [sym_qualified_name] = STATE(601), - [sym_namespace_name_as_prefix] = STATE(1284), - [sym_namespace_name] = STATE(1907), - [sym_static_modifier] = STATE(1920), - [sym_arrow_function] = STATE(747), - [sym_throw_expression] = STATE(747), - [sym__unary_expression] = STATE(723), - [sym_unary_op_expression] = STATE(732), - [sym_exponentiation_expression] = STATE(732), - [sym_clone_expression] = STATE(941), - [sym__primary_expression] = STATE(941), - [sym_parenthesized_expression] = STATE(608), - [sym_class_constant_access_expression] = STATE(639), - [sym_print_intrinsic] = STATE(747), - [sym_anonymous_function_creation_expression] = STATE(747), - [sym_object_creation_expression] = STATE(747), - [sym_update_expression] = STATE(747), - [sym_cast_expression] = STATE(732), - [sym_cast_variable] = STATE(527), - [sym_member_access_expression] = STATE(527), - [sym_nullsafe_member_access_expression] = STATE(527), - [sym_scoped_property_access_expression] = STATE(527), - [sym_function_call_expression] = STATE(513), - [sym_scoped_call_expression] = STATE(513), - [sym__scope_resolution_qualifier] = STATE(1928), - [sym_relative_scope] = STATE(1897), - [sym_member_call_expression] = STATE(513), - [sym_nullsafe_member_call_expression] = STATE(513), - [sym_subscript_expression] = STATE(513), - [sym__dereferencable_expression] = STATE(1286), - [sym_array_creation_expression] = STATE(608), - [sym__string] = STATE(608), - [sym_dynamic_variable_name] = STATE(513), - [sym_variable_name] = STATE(513), - [sym__reserved_identifier] = STATE(584), - [sym_name] = ACTIONS(525), - [anon_sym_QMARK_GT] = ACTIONS(3), - [aux_sym_function_static_declaration_token1] = ACTIONS(529), - [aux_sym_namespace_definition_token1] = ACTIONS(531), - [aux_sym_namespace_use_declaration_token2] = ACTIONS(533), - [anon_sym_BSLASH] = ACTIONS(196), - [aux_sym_arrow_function_token1] = ACTIONS(637), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_array] = ACTIONS(545), - [sym_float] = ACTIONS(547), - [sym_integer] = ACTIONS(547), - [aux_sym_throw_expression_token1] = ACTIONS(643), - [anon_sym_AT] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_clone] = ACTIONS(651), - [anon_sym_print] = ACTIONS(653), - [anon_sym_new] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [sym_shell_command_expression] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_self] = ACTIONS(571), - [anon_sym_parent] = ACTIONS(571), - [sym_string] = ACTIONS(573), - [sym_boolean] = ACTIONS(547), - [sym_null] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(575), + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_name] = ACTIONS(1283), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1281), + [aux_sym_function_static_declaration_token1] = ACTIONS(1283), + [aux_sym_global_declaration_token1] = ACTIONS(1283), + [aux_sym_namespace_definition_token1] = ACTIONS(1283), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1283), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1283), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1283), + [anon_sym_BSLASH] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [aux_sym_trait_declaration_token1] = ACTIONS(1283), + [aux_sym_interface_declaration_token1] = ACTIONS(1283), + [aux_sym_class_declaration_token1] = ACTIONS(1283), + [aux_sym_class_modifier_token1] = ACTIONS(1283), + [aux_sym_class_modifier_token2] = ACTIONS(1283), + [aux_sym_visibility_modifier_token1] = ACTIONS(1283), + [aux_sym_visibility_modifier_token2] = ACTIONS(1283), + [aux_sym_visibility_modifier_token3] = ACTIONS(1283), + [aux_sym_arrow_function_token1] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_array] = ACTIONS(1283), + [anon_sym_unset] = ACTIONS(1283), + [aux_sym_echo_statement_token1] = ACTIONS(1283), + [anon_sym_declare] = ACTIONS(1283), + [aux_sym_declare_statement_token1] = ACTIONS(1283), + [sym_float] = ACTIONS(1283), + [aux_sym_try_statement_token1] = ACTIONS(1283), + [aux_sym_goto_statement_token1] = ACTIONS(1283), + [aux_sym_continue_statement_token1] = ACTIONS(1283), + [aux_sym_break_statement_token1] = ACTIONS(1283), + [sym_integer] = ACTIONS(1283), + [aux_sym_return_statement_token1] = ACTIONS(1283), + [aux_sym_throw_expression_token1] = ACTIONS(1283), + [aux_sym_while_statement_token1] = ACTIONS(1283), + [aux_sym_while_statement_token2] = ACTIONS(1283), + [aux_sym_do_statement_token1] = ACTIONS(1283), + [aux_sym_for_statement_token1] = ACTIONS(1283), + [aux_sym_for_statement_token2] = ACTIONS(1283), + [aux_sym_foreach_statement_token1] = ACTIONS(1283), + [aux_sym_foreach_statement_token2] = ACTIONS(1283), + [aux_sym_if_statement_token1] = ACTIONS(1283), + [aux_sym_if_statement_token2] = ACTIONS(1283), + [aux_sym_else_if_clause_token1] = ACTIONS(1283), + [aux_sym_else_clause_token1] = ACTIONS(1283), + [aux_sym_match_expression_token1] = ACTIONS(1283), + [aux_sym_match_default_expression_token1] = ACTIONS(1283), + [aux_sym_switch_statement_token1] = ACTIONS(1283), + [aux_sym_switch_block_token1] = ACTIONS(1283), + [aux_sym_case_statement_token1] = ACTIONS(1283), + [anon_sym_AT] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_clone] = ACTIONS(1283), + [anon_sym_print] = ACTIONS(1283), + [anon_sym_new] = ACTIONS(1283), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [sym_shell_command_expression] = ACTIONS(1281), + [anon_sym_list] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_self] = ACTIONS(1283), + [anon_sym_parent] = ACTIONS(1283), + [anon_sym_POUND_LBRACK] = ACTIONS(1281), + [sym_string] = ACTIONS(1281), + [sym_boolean] = ACTIONS(1283), + [sym_null] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1281), + [anon_sym_yield] = ACTIONS(1283), + [aux_sym_include_expression_token1] = ACTIONS(1283), + [aux_sym_include_once_expression_token1] = ACTIONS(1283), + [aux_sym_require_expression_token1] = ACTIONS(1283), + [aux_sym_require_once_expression_token1] = ACTIONS(1283), [sym_comment] = ACTIONS(5), - [sym_heredoc] = ACTIONS(573), + [sym_heredoc] = ACTIONS(1281), }, [505] = { [sym_text_interpolation] = STATE(505), + [ts_builtin_sym_end] = ACTIONS(902), + [sym_name] = ACTIONS(904), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_COMMA] = ACTIONS(1260), - [anon_sym_EQ] = ACTIONS(1262), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [aux_sym_base_clause_token1] = ACTIONS(1260), - [aux_sym_class_interface_clause_token1] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_EQ_GT] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_RPAREN] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1262), - [anon_sym_COLON] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_STAR_STAR] = ACTIONS(1262), - [anon_sym_COLON_COLON] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1260), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1260), - [anon_sym_STAR_EQ] = ACTIONS(1260), - [anon_sym_SLASH_EQ] = ACTIONS(1260), - [anon_sym_PERCENT_EQ] = ACTIONS(1260), - [anon_sym_PLUS_EQ] = ACTIONS(1260), - [anon_sym_DASH_EQ] = ACTIONS(1260), - [anon_sym_DOT_EQ] = ACTIONS(1260), - [anon_sym_LT_LT_EQ] = ACTIONS(1260), - [anon_sym_GT_GT_EQ] = ACTIONS(1260), - [anon_sym_AMP_EQ] = ACTIONS(1260), - [anon_sym_CARET_EQ] = ACTIONS(1260), - [anon_sym_PIPE_EQ] = ACTIONS(1260), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1260), - [anon_sym_DASH_GT] = ACTIONS(1260), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_RBRACK] = ACTIONS(1260), - [aux_sym_binary_expression_token1] = ACTIONS(1260), - [anon_sym_QMARK_QMARK] = ACTIONS(1262), - [aux_sym_binary_expression_token2] = ACTIONS(1260), - [aux_sym_binary_expression_token3] = ACTIONS(1260), - [aux_sym_binary_expression_token4] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_CARET] = ACTIONS(1262), - [anon_sym_EQ_EQ] = ACTIONS(1262), - [anon_sym_BANG_EQ] = ACTIONS(1262), - [anon_sym_LT_GT] = ACTIONS(1260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_GT] = ACTIONS(1262), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1260), - [anon_sym_LT_EQ_GT] = ACTIONS(1260), - [anon_sym_LT_LT] = ACTIONS(1262), - [anon_sym_GT_GT] = ACTIONS(1262), - [anon_sym_DOT] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_SLASH] = ACTIONS(1262), - [anon_sym_PERCENT] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(902), + [aux_sym_function_static_declaration_token1] = ACTIONS(904), + [aux_sym_global_declaration_token1] = ACTIONS(904), + [aux_sym_namespace_definition_token1] = ACTIONS(904), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(904), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(904), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(904), + [anon_sym_BSLASH] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(902), + [anon_sym_RBRACE] = ACTIONS(902), + [aux_sym_trait_declaration_token1] = ACTIONS(904), + [aux_sym_interface_declaration_token1] = ACTIONS(904), + [aux_sym_class_declaration_token1] = ACTIONS(904), + [aux_sym_class_modifier_token1] = ACTIONS(904), + [aux_sym_class_modifier_token2] = ACTIONS(904), + [aux_sym_visibility_modifier_token1] = ACTIONS(904), + [aux_sym_visibility_modifier_token2] = ACTIONS(904), + [aux_sym_visibility_modifier_token3] = ACTIONS(904), + [aux_sym_arrow_function_token1] = ACTIONS(904), + [anon_sym_LPAREN] = ACTIONS(902), + [anon_sym_array] = ACTIONS(904), + [anon_sym_unset] = ACTIONS(904), + [aux_sym_echo_statement_token1] = ACTIONS(904), + [anon_sym_declare] = ACTIONS(904), + [aux_sym_declare_statement_token1] = ACTIONS(904), + [sym_float] = ACTIONS(904), + [aux_sym_try_statement_token1] = ACTIONS(904), + [aux_sym_goto_statement_token1] = ACTIONS(904), + [aux_sym_continue_statement_token1] = ACTIONS(904), + [aux_sym_break_statement_token1] = ACTIONS(904), + [sym_integer] = ACTIONS(904), + [aux_sym_return_statement_token1] = ACTIONS(904), + [aux_sym_throw_expression_token1] = ACTIONS(904), + [aux_sym_while_statement_token1] = ACTIONS(904), + [aux_sym_while_statement_token2] = ACTIONS(904), + [aux_sym_do_statement_token1] = ACTIONS(904), + [aux_sym_for_statement_token1] = ACTIONS(904), + [aux_sym_for_statement_token2] = ACTIONS(904), + [aux_sym_foreach_statement_token1] = ACTIONS(904), + [aux_sym_foreach_statement_token2] = ACTIONS(904), + [aux_sym_if_statement_token1] = ACTIONS(904), + [aux_sym_if_statement_token2] = ACTIONS(904), + [aux_sym_else_if_clause_token1] = ACTIONS(904), + [aux_sym_else_clause_token1] = ACTIONS(904), + [aux_sym_match_expression_token1] = ACTIONS(904), + [aux_sym_match_default_expression_token1] = ACTIONS(904), + [aux_sym_switch_statement_token1] = ACTIONS(904), + [aux_sym_switch_block_token1] = ACTIONS(904), + [aux_sym_case_statement_token1] = ACTIONS(904), + [anon_sym_AT] = ACTIONS(902), + [anon_sym_PLUS] = ACTIONS(904), + [anon_sym_DASH] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_clone] = ACTIONS(904), + [anon_sym_print] = ACTIONS(904), + [anon_sym_new] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(902), + [anon_sym_DASH_DASH] = ACTIONS(902), + [sym_shell_command_expression] = ACTIONS(902), + [anon_sym_list] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(902), + [anon_sym_self] = ACTIONS(904), + [anon_sym_parent] = ACTIONS(904), + [anon_sym_POUND_LBRACK] = ACTIONS(902), + [sym_string] = ACTIONS(902), + [sym_boolean] = ACTIONS(904), + [sym_null] = ACTIONS(904), + [anon_sym_DOLLAR] = ACTIONS(902), + [anon_sym_yield] = ACTIONS(904), + [aux_sym_include_expression_token1] = ACTIONS(904), + [aux_sym_include_once_expression_token1] = ACTIONS(904), + [aux_sym_require_expression_token1] = ACTIONS(904), + [aux_sym_require_once_expression_token1] = ACTIONS(904), [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(902), }, [506] = { [sym_text_interpolation] = STATE(506), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_name] = ACTIONS(1287), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(1264), - [anon_sym_EQ] = ACTIONS(1266), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [aux_sym_base_clause_token1] = ACTIONS(1264), - [aux_sym_class_interface_clause_token1] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_EQ_GT] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_COLON] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_STAR_STAR] = ACTIONS(1266), - [anon_sym_COLON_COLON] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1264), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1264), - [anon_sym_STAR_EQ] = ACTIONS(1264), - [anon_sym_SLASH_EQ] = ACTIONS(1264), - [anon_sym_PERCENT_EQ] = ACTIONS(1264), - [anon_sym_PLUS_EQ] = ACTIONS(1264), - [anon_sym_DASH_EQ] = ACTIONS(1264), - [anon_sym_DOT_EQ] = ACTIONS(1264), - [anon_sym_LT_LT_EQ] = ACTIONS(1264), - [anon_sym_GT_GT_EQ] = ACTIONS(1264), - [anon_sym_AMP_EQ] = ACTIONS(1264), - [anon_sym_CARET_EQ] = ACTIONS(1264), - [anon_sym_PIPE_EQ] = ACTIONS(1264), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1264), - [anon_sym_DASH_GT] = ACTIONS(1264), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_RBRACK] = ACTIONS(1264), - [aux_sym_binary_expression_token1] = ACTIONS(1264), - [anon_sym_QMARK_QMARK] = ACTIONS(1266), - [aux_sym_binary_expression_token2] = ACTIONS(1264), - [aux_sym_binary_expression_token3] = ACTIONS(1264), - [aux_sym_binary_expression_token4] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1266), - [anon_sym_EQ_EQ] = ACTIONS(1266), - [anon_sym_BANG_EQ] = ACTIONS(1266), - [anon_sym_LT_GT] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1264), - [anon_sym_LT_EQ_GT] = ACTIONS(1264), - [anon_sym_LT_LT] = ACTIONS(1266), - [anon_sym_GT_GT] = ACTIONS(1266), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1266), - [anon_sym_PERCENT] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1285), + [aux_sym_function_static_declaration_token1] = ACTIONS(1287), + [aux_sym_global_declaration_token1] = ACTIONS(1287), + [aux_sym_namespace_definition_token1] = ACTIONS(1287), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1287), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1287), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1287), + [anon_sym_BSLASH] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [aux_sym_trait_declaration_token1] = ACTIONS(1287), + [aux_sym_interface_declaration_token1] = ACTIONS(1287), + [aux_sym_class_declaration_token1] = ACTIONS(1287), + [aux_sym_class_modifier_token1] = ACTIONS(1287), + [aux_sym_class_modifier_token2] = ACTIONS(1287), + [aux_sym_visibility_modifier_token1] = ACTIONS(1287), + [aux_sym_visibility_modifier_token2] = ACTIONS(1287), + [aux_sym_visibility_modifier_token3] = ACTIONS(1287), + [aux_sym_arrow_function_token1] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_array] = ACTIONS(1287), + [anon_sym_unset] = ACTIONS(1287), + [aux_sym_echo_statement_token1] = ACTIONS(1287), + [anon_sym_declare] = ACTIONS(1287), + [aux_sym_declare_statement_token1] = ACTIONS(1287), + [sym_float] = ACTIONS(1287), + [aux_sym_try_statement_token1] = ACTIONS(1287), + [aux_sym_goto_statement_token1] = ACTIONS(1287), + [aux_sym_continue_statement_token1] = ACTIONS(1287), + [aux_sym_break_statement_token1] = ACTIONS(1287), + [sym_integer] = ACTIONS(1287), + [aux_sym_return_statement_token1] = ACTIONS(1287), + [aux_sym_throw_expression_token1] = ACTIONS(1287), + [aux_sym_while_statement_token1] = ACTIONS(1287), + [aux_sym_while_statement_token2] = ACTIONS(1287), + [aux_sym_do_statement_token1] = ACTIONS(1287), + [aux_sym_for_statement_token1] = ACTIONS(1287), + [aux_sym_for_statement_token2] = ACTIONS(1287), + [aux_sym_foreach_statement_token1] = ACTIONS(1287), + [aux_sym_foreach_statement_token2] = ACTIONS(1287), + [aux_sym_if_statement_token1] = ACTIONS(1287), + [aux_sym_if_statement_token2] = ACTIONS(1287), + [aux_sym_else_if_clause_token1] = ACTIONS(1287), + [aux_sym_else_clause_token1] = ACTIONS(1287), + [aux_sym_match_expression_token1] = ACTIONS(1287), + [aux_sym_match_default_expression_token1] = ACTIONS(1287), + [aux_sym_switch_statement_token1] = ACTIONS(1287), + [aux_sym_switch_block_token1] = ACTIONS(1287), + [aux_sym_case_statement_token1] = ACTIONS(1287), + [anon_sym_AT] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_clone] = ACTIONS(1287), + [anon_sym_print] = ACTIONS(1287), + [anon_sym_new] = ACTIONS(1287), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [sym_shell_command_expression] = ACTIONS(1285), + [anon_sym_list] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_self] = ACTIONS(1287), + [anon_sym_parent] = ACTIONS(1287), + [anon_sym_POUND_LBRACK] = ACTIONS(1285), + [sym_string] = ACTIONS(1285), + [sym_boolean] = ACTIONS(1287), + [sym_null] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_yield] = ACTIONS(1287), + [aux_sym_include_expression_token1] = ACTIONS(1287), + [aux_sym_include_once_expression_token1] = ACTIONS(1287), + [aux_sym_require_expression_token1] = ACTIONS(1287), + [aux_sym_require_once_expression_token1] = ACTIONS(1287), [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1285), }, [507] = { [sym_text_interpolation] = STATE(507), + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_name] = ACTIONS(1291), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1289), + [aux_sym_function_static_declaration_token1] = ACTIONS(1291), + [aux_sym_global_declaration_token1] = ACTIONS(1291), + [aux_sym_namespace_definition_token1] = ACTIONS(1291), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1291), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1291), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1291), + [anon_sym_BSLASH] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [aux_sym_trait_declaration_token1] = ACTIONS(1291), + [aux_sym_interface_declaration_token1] = ACTIONS(1291), + [aux_sym_class_declaration_token1] = ACTIONS(1291), + [aux_sym_class_modifier_token1] = ACTIONS(1291), + [aux_sym_class_modifier_token2] = ACTIONS(1291), + [aux_sym_visibility_modifier_token1] = ACTIONS(1291), + [aux_sym_visibility_modifier_token2] = ACTIONS(1291), + [aux_sym_visibility_modifier_token3] = ACTIONS(1291), + [aux_sym_arrow_function_token1] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_array] = ACTIONS(1291), + [anon_sym_unset] = ACTIONS(1291), + [aux_sym_echo_statement_token1] = ACTIONS(1291), + [anon_sym_declare] = ACTIONS(1291), + [aux_sym_declare_statement_token1] = ACTIONS(1291), + [sym_float] = ACTIONS(1291), + [aux_sym_try_statement_token1] = ACTIONS(1291), + [aux_sym_goto_statement_token1] = ACTIONS(1291), + [aux_sym_continue_statement_token1] = ACTIONS(1291), + [aux_sym_break_statement_token1] = ACTIONS(1291), + [sym_integer] = ACTIONS(1291), + [aux_sym_return_statement_token1] = ACTIONS(1291), + [aux_sym_throw_expression_token1] = ACTIONS(1291), + [aux_sym_while_statement_token1] = ACTIONS(1291), + [aux_sym_while_statement_token2] = ACTIONS(1291), + [aux_sym_do_statement_token1] = ACTIONS(1291), + [aux_sym_for_statement_token1] = ACTIONS(1291), + [aux_sym_for_statement_token2] = ACTIONS(1291), + [aux_sym_foreach_statement_token1] = ACTIONS(1291), + [aux_sym_foreach_statement_token2] = ACTIONS(1291), + [aux_sym_if_statement_token1] = ACTIONS(1291), + [aux_sym_if_statement_token2] = ACTIONS(1291), + [aux_sym_else_if_clause_token1] = ACTIONS(1291), + [aux_sym_else_clause_token1] = ACTIONS(1291), + [aux_sym_match_expression_token1] = ACTIONS(1291), + [aux_sym_match_default_expression_token1] = ACTIONS(1291), + [aux_sym_switch_statement_token1] = ACTIONS(1291), + [aux_sym_switch_block_token1] = ACTIONS(1291), + [aux_sym_case_statement_token1] = ACTIONS(1291), + [anon_sym_AT] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_clone] = ACTIONS(1291), + [anon_sym_print] = ACTIONS(1291), + [anon_sym_new] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1289), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [sym_shell_command_expression] = ACTIONS(1289), + [anon_sym_list] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_self] = ACTIONS(1291), + [anon_sym_parent] = ACTIONS(1291), + [anon_sym_POUND_LBRACK] = ACTIONS(1289), + [sym_string] = ACTIONS(1289), + [sym_boolean] = ACTIONS(1291), + [sym_null] = ACTIONS(1291), + [anon_sym_DOLLAR] = ACTIONS(1289), + [anon_sym_yield] = ACTIONS(1291), + [aux_sym_include_expression_token1] = ACTIONS(1291), + [aux_sym_include_once_expression_token1] = ACTIONS(1291), + [aux_sym_require_expression_token1] = ACTIONS(1291), + [aux_sym_require_once_expression_token1] = ACTIONS(1291), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1289), + }, + [508] = { + [sym_text_interpolation] = STATE(508), + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_name] = ACTIONS(1295), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1293), + [aux_sym_function_static_declaration_token1] = ACTIONS(1295), + [aux_sym_global_declaration_token1] = ACTIONS(1295), + [aux_sym_namespace_definition_token1] = ACTIONS(1295), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1295), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1295), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1295), + [anon_sym_BSLASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [aux_sym_trait_declaration_token1] = ACTIONS(1295), + [aux_sym_interface_declaration_token1] = ACTIONS(1295), + [aux_sym_class_declaration_token1] = ACTIONS(1295), + [aux_sym_class_modifier_token1] = ACTIONS(1295), + [aux_sym_class_modifier_token2] = ACTIONS(1295), + [aux_sym_visibility_modifier_token1] = ACTIONS(1295), + [aux_sym_visibility_modifier_token2] = ACTIONS(1295), + [aux_sym_visibility_modifier_token3] = ACTIONS(1295), + [aux_sym_arrow_function_token1] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_array] = ACTIONS(1295), + [anon_sym_unset] = ACTIONS(1295), + [aux_sym_echo_statement_token1] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [aux_sym_declare_statement_token1] = ACTIONS(1295), + [sym_float] = ACTIONS(1295), + [aux_sym_try_statement_token1] = ACTIONS(1295), + [aux_sym_goto_statement_token1] = ACTIONS(1295), + [aux_sym_continue_statement_token1] = ACTIONS(1295), + [aux_sym_break_statement_token1] = ACTIONS(1295), + [sym_integer] = ACTIONS(1295), + [aux_sym_return_statement_token1] = ACTIONS(1295), + [aux_sym_throw_expression_token1] = ACTIONS(1295), + [aux_sym_while_statement_token1] = ACTIONS(1295), + [aux_sym_while_statement_token2] = ACTIONS(1295), + [aux_sym_do_statement_token1] = ACTIONS(1295), + [aux_sym_for_statement_token1] = ACTIONS(1295), + [aux_sym_for_statement_token2] = ACTIONS(1295), + [aux_sym_foreach_statement_token1] = ACTIONS(1295), + [aux_sym_foreach_statement_token2] = ACTIONS(1295), + [aux_sym_if_statement_token1] = ACTIONS(1295), + [aux_sym_if_statement_token2] = ACTIONS(1295), + [aux_sym_else_if_clause_token1] = ACTIONS(1295), + [aux_sym_else_clause_token1] = ACTIONS(1295), + [aux_sym_match_expression_token1] = ACTIONS(1295), + [aux_sym_match_default_expression_token1] = ACTIONS(1295), + [aux_sym_switch_statement_token1] = ACTIONS(1295), + [aux_sym_switch_block_token1] = ACTIONS(1295), + [aux_sym_case_statement_token1] = ACTIONS(1295), + [anon_sym_AT] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_clone] = ACTIONS(1295), + [anon_sym_print] = ACTIONS(1295), + [anon_sym_new] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_shell_command_expression] = ACTIONS(1293), + [anon_sym_list] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_self] = ACTIONS(1295), + [anon_sym_parent] = ACTIONS(1295), + [anon_sym_POUND_LBRACK] = ACTIONS(1293), + [sym_string] = ACTIONS(1293), + [sym_boolean] = ACTIONS(1295), + [sym_null] = ACTIONS(1295), + [anon_sym_DOLLAR] = ACTIONS(1293), + [anon_sym_yield] = ACTIONS(1295), + [aux_sym_include_expression_token1] = ACTIONS(1295), + [aux_sym_include_once_expression_token1] = ACTIONS(1295), + [aux_sym_require_expression_token1] = ACTIONS(1295), + [aux_sym_require_once_expression_token1] = ACTIONS(1295), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1293), + }, + [509] = { + [sym_text_interpolation] = STATE(509), + [ts_builtin_sym_end] = ACTIONS(1293), + [sym_name] = ACTIONS(1295), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1293), + [aux_sym_function_static_declaration_token1] = ACTIONS(1295), + [aux_sym_global_declaration_token1] = ACTIONS(1295), + [aux_sym_namespace_definition_token1] = ACTIONS(1295), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1295), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1295), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1295), + [anon_sym_BSLASH] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1293), + [anon_sym_RBRACE] = ACTIONS(1293), + [aux_sym_trait_declaration_token1] = ACTIONS(1295), + [aux_sym_interface_declaration_token1] = ACTIONS(1295), + [aux_sym_class_declaration_token1] = ACTIONS(1295), + [aux_sym_class_modifier_token1] = ACTIONS(1295), + [aux_sym_class_modifier_token2] = ACTIONS(1295), + [aux_sym_visibility_modifier_token1] = ACTIONS(1295), + [aux_sym_visibility_modifier_token2] = ACTIONS(1295), + [aux_sym_visibility_modifier_token3] = ACTIONS(1295), + [aux_sym_arrow_function_token1] = ACTIONS(1295), + [anon_sym_LPAREN] = ACTIONS(1293), + [anon_sym_array] = ACTIONS(1295), + [anon_sym_unset] = ACTIONS(1295), + [aux_sym_echo_statement_token1] = ACTIONS(1295), + [anon_sym_declare] = ACTIONS(1295), + [aux_sym_declare_statement_token1] = ACTIONS(1295), + [sym_float] = ACTIONS(1295), + [aux_sym_try_statement_token1] = ACTIONS(1295), + [aux_sym_goto_statement_token1] = ACTIONS(1295), + [aux_sym_continue_statement_token1] = ACTIONS(1295), + [aux_sym_break_statement_token1] = ACTIONS(1295), + [sym_integer] = ACTIONS(1295), + [aux_sym_return_statement_token1] = ACTIONS(1295), + [aux_sym_throw_expression_token1] = ACTIONS(1295), + [aux_sym_while_statement_token1] = ACTIONS(1295), + [aux_sym_while_statement_token2] = ACTIONS(1295), + [aux_sym_do_statement_token1] = ACTIONS(1295), + [aux_sym_for_statement_token1] = ACTIONS(1295), + [aux_sym_for_statement_token2] = ACTIONS(1295), + [aux_sym_foreach_statement_token1] = ACTIONS(1295), + [aux_sym_foreach_statement_token2] = ACTIONS(1295), + [aux_sym_if_statement_token1] = ACTIONS(1295), + [aux_sym_if_statement_token2] = ACTIONS(1295), + [aux_sym_else_if_clause_token1] = ACTIONS(1295), + [aux_sym_else_clause_token1] = ACTIONS(1295), + [aux_sym_match_expression_token1] = ACTIONS(1295), + [aux_sym_match_default_expression_token1] = ACTIONS(1295), + [aux_sym_switch_statement_token1] = ACTIONS(1295), + [aux_sym_switch_block_token1] = ACTIONS(1295), + [aux_sym_case_statement_token1] = ACTIONS(1295), + [anon_sym_AT] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1293), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_clone] = ACTIONS(1295), + [anon_sym_print] = ACTIONS(1295), + [anon_sym_new] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1293), + [sym_shell_command_expression] = ACTIONS(1293), + [anon_sym_list] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_self] = ACTIONS(1295), + [anon_sym_parent] = ACTIONS(1295), + [anon_sym_POUND_LBRACK] = ACTIONS(1293), + [sym_string] = ACTIONS(1293), + [sym_boolean] = ACTIONS(1295), + [sym_null] = ACTIONS(1295), + [anon_sym_DOLLAR] = ACTIONS(1293), + [anon_sym_yield] = ACTIONS(1295), + [aux_sym_include_expression_token1] = ACTIONS(1295), + [aux_sym_include_once_expression_token1] = ACTIONS(1295), + [aux_sym_require_expression_token1] = ACTIONS(1295), + [aux_sym_require_once_expression_token1] = ACTIONS(1295), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1293), + }, + [510] = { + [sym_text_interpolation] = STATE(510), + [ts_builtin_sym_end] = ACTIONS(1297), + [sym_name] = ACTIONS(1299), [anon_sym_QMARK_GT] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_EQ] = ACTIONS(1270), - [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [aux_sym_base_clause_token1] = ACTIONS(1268), - [aux_sym_class_interface_clause_token1] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1270), - [anon_sym_COLON] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_STAR_STAR] = ACTIONS(1270), - [anon_sym_COLON_COLON] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_PERCENT_EQ] = ACTIONS(1268), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_DOT_EQ] = ACTIONS(1268), - [anon_sym_LT_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_GT_EQ] = ACTIONS(1268), - [anon_sym_AMP_EQ] = ACTIONS(1268), - [anon_sym_CARET_EQ] = ACTIONS(1268), - [anon_sym_PIPE_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1268), - [anon_sym_DASH_GT] = ACTIONS(1268), - [anon_sym_QMARK_DASH_GT] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_RBRACK] = ACTIONS(1268), - [aux_sym_binary_expression_token1] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1270), - [aux_sym_binary_expression_token2] = ACTIONS(1268), - [aux_sym_binary_expression_token3] = ACTIONS(1268), - [aux_sym_binary_expression_token4] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT_GT] = ACTIONS(1268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_LT_EQ_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1270), - [anon_sym_DOT] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1297), + [aux_sym_function_static_declaration_token1] = ACTIONS(1299), + [aux_sym_global_declaration_token1] = ACTIONS(1299), + [aux_sym_namespace_definition_token1] = ACTIONS(1299), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1299), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1299), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1299), + [anon_sym_BSLASH] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [aux_sym_trait_declaration_token1] = ACTIONS(1299), + [aux_sym_interface_declaration_token1] = ACTIONS(1299), + [aux_sym_class_declaration_token1] = ACTIONS(1299), + [aux_sym_class_modifier_token1] = ACTIONS(1299), + [aux_sym_class_modifier_token2] = ACTIONS(1299), + [aux_sym_visibility_modifier_token1] = ACTIONS(1299), + [aux_sym_visibility_modifier_token2] = ACTIONS(1299), + [aux_sym_visibility_modifier_token3] = ACTIONS(1299), + [aux_sym_arrow_function_token1] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_array] = ACTIONS(1299), + [anon_sym_unset] = ACTIONS(1299), + [aux_sym_echo_statement_token1] = ACTIONS(1299), + [anon_sym_declare] = ACTIONS(1299), + [aux_sym_declare_statement_token1] = ACTIONS(1299), + [sym_float] = ACTIONS(1299), + [aux_sym_try_statement_token1] = ACTIONS(1299), + [aux_sym_goto_statement_token1] = ACTIONS(1299), + [aux_sym_continue_statement_token1] = ACTIONS(1299), + [aux_sym_break_statement_token1] = ACTIONS(1299), + [sym_integer] = ACTIONS(1299), + [aux_sym_return_statement_token1] = ACTIONS(1299), + [aux_sym_throw_expression_token1] = ACTIONS(1299), + [aux_sym_while_statement_token1] = ACTIONS(1299), + [aux_sym_while_statement_token2] = ACTIONS(1299), + [aux_sym_do_statement_token1] = ACTIONS(1299), + [aux_sym_for_statement_token1] = ACTIONS(1299), + [aux_sym_for_statement_token2] = ACTIONS(1299), + [aux_sym_foreach_statement_token1] = ACTIONS(1299), + [aux_sym_foreach_statement_token2] = ACTIONS(1299), + [aux_sym_if_statement_token1] = ACTIONS(1299), + [aux_sym_if_statement_token2] = ACTIONS(1299), + [aux_sym_else_if_clause_token1] = ACTIONS(1299), + [aux_sym_else_clause_token1] = ACTIONS(1299), + [aux_sym_match_expression_token1] = ACTIONS(1299), + [aux_sym_match_default_expression_token1] = ACTIONS(1299), + [aux_sym_switch_statement_token1] = ACTIONS(1299), + [aux_sym_switch_block_token1] = ACTIONS(1299), + [aux_sym_case_statement_token1] = ACTIONS(1299), + [anon_sym_AT] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_clone] = ACTIONS(1299), + [anon_sym_print] = ACTIONS(1299), + [anon_sym_new] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [sym_shell_command_expression] = ACTIONS(1297), + [anon_sym_list] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_self] = ACTIONS(1299), + [anon_sym_parent] = ACTIONS(1299), + [anon_sym_POUND_LBRACK] = ACTIONS(1297), + [sym_string] = ACTIONS(1297), + [sym_boolean] = ACTIONS(1299), + [sym_null] = ACTIONS(1299), + [anon_sym_DOLLAR] = ACTIONS(1297), + [anon_sym_yield] = ACTIONS(1299), + [aux_sym_include_expression_token1] = ACTIONS(1299), + [aux_sym_include_once_expression_token1] = ACTIONS(1299), + [aux_sym_require_expression_token1] = ACTIONS(1299), + [aux_sym_require_once_expression_token1] = ACTIONS(1299), [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1297), + }, + [511] = { + [sym_text_interpolation] = STATE(511), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_name] = ACTIONS(1303), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1301), + [aux_sym_function_static_declaration_token1] = ACTIONS(1303), + [aux_sym_global_declaration_token1] = ACTIONS(1303), + [aux_sym_namespace_definition_token1] = ACTIONS(1303), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1303), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1303), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1303), + [anon_sym_BSLASH] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [aux_sym_trait_declaration_token1] = ACTIONS(1303), + [aux_sym_interface_declaration_token1] = ACTIONS(1303), + [aux_sym_class_declaration_token1] = ACTIONS(1303), + [aux_sym_class_modifier_token1] = ACTIONS(1303), + [aux_sym_class_modifier_token2] = ACTIONS(1303), + [aux_sym_visibility_modifier_token1] = ACTIONS(1303), + [aux_sym_visibility_modifier_token2] = ACTIONS(1303), + [aux_sym_visibility_modifier_token3] = ACTIONS(1303), + [aux_sym_arrow_function_token1] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_array] = ACTIONS(1303), + [anon_sym_unset] = ACTIONS(1303), + [aux_sym_echo_statement_token1] = ACTIONS(1303), + [anon_sym_declare] = ACTIONS(1303), + [aux_sym_declare_statement_token1] = ACTIONS(1303), + [sym_float] = ACTIONS(1303), + [aux_sym_try_statement_token1] = ACTIONS(1303), + [aux_sym_goto_statement_token1] = ACTIONS(1303), + [aux_sym_continue_statement_token1] = ACTIONS(1303), + [aux_sym_break_statement_token1] = ACTIONS(1303), + [sym_integer] = ACTIONS(1303), + [aux_sym_return_statement_token1] = ACTIONS(1303), + [aux_sym_throw_expression_token1] = ACTIONS(1303), + [aux_sym_while_statement_token1] = ACTIONS(1303), + [aux_sym_while_statement_token2] = ACTIONS(1303), + [aux_sym_do_statement_token1] = ACTIONS(1303), + [aux_sym_for_statement_token1] = ACTIONS(1303), + [aux_sym_for_statement_token2] = ACTIONS(1303), + [aux_sym_foreach_statement_token1] = ACTIONS(1303), + [aux_sym_foreach_statement_token2] = ACTIONS(1303), + [aux_sym_if_statement_token1] = ACTIONS(1303), + [aux_sym_if_statement_token2] = ACTIONS(1303), + [aux_sym_else_if_clause_token1] = ACTIONS(1303), + [aux_sym_else_clause_token1] = ACTIONS(1303), + [aux_sym_match_expression_token1] = ACTIONS(1303), + [aux_sym_match_default_expression_token1] = ACTIONS(1303), + [aux_sym_switch_statement_token1] = ACTIONS(1303), + [aux_sym_switch_block_token1] = ACTIONS(1303), + [aux_sym_case_statement_token1] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_clone] = ACTIONS(1303), + [anon_sym_print] = ACTIONS(1303), + [anon_sym_new] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1301), + [sym_shell_command_expression] = ACTIONS(1301), + [anon_sym_list] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_self] = ACTIONS(1303), + [anon_sym_parent] = ACTIONS(1303), + [anon_sym_POUND_LBRACK] = ACTIONS(1301), + [sym_string] = ACTIONS(1301), + [sym_boolean] = ACTIONS(1303), + [sym_null] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [aux_sym_include_expression_token1] = ACTIONS(1303), + [aux_sym_include_once_expression_token1] = ACTIONS(1303), + [aux_sym_require_expression_token1] = ACTIONS(1303), + [aux_sym_require_once_expression_token1] = ACTIONS(1303), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1301), + }, + [512] = { + [sym_text_interpolation] = STATE(512), + [ts_builtin_sym_end] = ACTIONS(1305), + [sym_name] = ACTIONS(1307), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1305), + [aux_sym_function_static_declaration_token1] = ACTIONS(1307), + [aux_sym_global_declaration_token1] = ACTIONS(1307), + [aux_sym_namespace_definition_token1] = ACTIONS(1307), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1307), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1307), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1307), + [anon_sym_BSLASH] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1305), + [anon_sym_RBRACE] = ACTIONS(1305), + [aux_sym_trait_declaration_token1] = ACTIONS(1307), + [aux_sym_interface_declaration_token1] = ACTIONS(1307), + [aux_sym_class_declaration_token1] = ACTIONS(1307), + [aux_sym_class_modifier_token1] = ACTIONS(1307), + [aux_sym_class_modifier_token2] = ACTIONS(1307), + [aux_sym_visibility_modifier_token1] = ACTIONS(1307), + [aux_sym_visibility_modifier_token2] = ACTIONS(1307), + [aux_sym_visibility_modifier_token3] = ACTIONS(1307), + [aux_sym_arrow_function_token1] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_array] = ACTIONS(1307), + [anon_sym_unset] = ACTIONS(1307), + [aux_sym_echo_statement_token1] = ACTIONS(1307), + [anon_sym_declare] = ACTIONS(1307), + [aux_sym_declare_statement_token1] = ACTIONS(1307), + [sym_float] = ACTIONS(1307), + [aux_sym_try_statement_token1] = ACTIONS(1307), + [aux_sym_goto_statement_token1] = ACTIONS(1307), + [aux_sym_continue_statement_token1] = ACTIONS(1307), + [aux_sym_break_statement_token1] = ACTIONS(1307), + [sym_integer] = ACTIONS(1307), + [aux_sym_return_statement_token1] = ACTIONS(1307), + [aux_sym_throw_expression_token1] = ACTIONS(1307), + [aux_sym_while_statement_token1] = ACTIONS(1307), + [aux_sym_while_statement_token2] = ACTIONS(1307), + [aux_sym_do_statement_token1] = ACTIONS(1307), + [aux_sym_for_statement_token1] = ACTIONS(1307), + [aux_sym_for_statement_token2] = ACTIONS(1307), + [aux_sym_foreach_statement_token1] = ACTIONS(1307), + [aux_sym_foreach_statement_token2] = ACTIONS(1307), + [aux_sym_if_statement_token1] = ACTIONS(1307), + [aux_sym_if_statement_token2] = ACTIONS(1307), + [aux_sym_else_if_clause_token1] = ACTIONS(1307), + [aux_sym_else_clause_token1] = ACTIONS(1307), + [aux_sym_match_expression_token1] = ACTIONS(1307), + [aux_sym_match_default_expression_token1] = ACTIONS(1307), + [aux_sym_switch_statement_token1] = ACTIONS(1307), + [aux_sym_switch_block_token1] = ACTIONS(1307), + [aux_sym_case_statement_token1] = ACTIONS(1307), + [anon_sym_AT] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(1305), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_clone] = ACTIONS(1307), + [anon_sym_print] = ACTIONS(1307), + [anon_sym_new] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1305), + [anon_sym_DASH_DASH] = ACTIONS(1305), + [sym_shell_command_expression] = ACTIONS(1305), + [anon_sym_list] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1305), + [anon_sym_self] = ACTIONS(1307), + [anon_sym_parent] = ACTIONS(1307), + [anon_sym_POUND_LBRACK] = ACTIONS(1305), + [sym_string] = ACTIONS(1305), + [sym_boolean] = ACTIONS(1307), + [sym_null] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1305), + [anon_sym_yield] = ACTIONS(1307), + [aux_sym_include_expression_token1] = ACTIONS(1307), + [aux_sym_include_once_expression_token1] = ACTIONS(1307), + [aux_sym_require_expression_token1] = ACTIONS(1307), + [aux_sym_require_once_expression_token1] = ACTIONS(1307), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1305), + }, + [513] = { + [sym_text_interpolation] = STATE(513), + [ts_builtin_sym_end] = ACTIONS(1309), + [sym_name] = ACTIONS(1311), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1309), + [aux_sym_function_static_declaration_token1] = ACTIONS(1311), + [aux_sym_global_declaration_token1] = ACTIONS(1311), + [aux_sym_namespace_definition_token1] = ACTIONS(1311), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1311), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1311), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1311), + [anon_sym_BSLASH] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [aux_sym_trait_declaration_token1] = ACTIONS(1311), + [aux_sym_interface_declaration_token1] = ACTIONS(1311), + [aux_sym_class_declaration_token1] = ACTIONS(1311), + [aux_sym_class_modifier_token1] = ACTIONS(1311), + [aux_sym_class_modifier_token2] = ACTIONS(1311), + [aux_sym_visibility_modifier_token1] = ACTIONS(1311), + [aux_sym_visibility_modifier_token2] = ACTIONS(1311), + [aux_sym_visibility_modifier_token3] = ACTIONS(1311), + [aux_sym_arrow_function_token1] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_array] = ACTIONS(1311), + [anon_sym_unset] = ACTIONS(1311), + [aux_sym_echo_statement_token1] = ACTIONS(1311), + [anon_sym_declare] = ACTIONS(1311), + [aux_sym_declare_statement_token1] = ACTIONS(1311), + [sym_float] = ACTIONS(1311), + [aux_sym_try_statement_token1] = ACTIONS(1311), + [aux_sym_goto_statement_token1] = ACTIONS(1311), + [aux_sym_continue_statement_token1] = ACTIONS(1311), + [aux_sym_break_statement_token1] = ACTIONS(1311), + [sym_integer] = ACTIONS(1311), + [aux_sym_return_statement_token1] = ACTIONS(1311), + [aux_sym_throw_expression_token1] = ACTIONS(1311), + [aux_sym_while_statement_token1] = ACTIONS(1311), + [aux_sym_while_statement_token2] = ACTIONS(1311), + [aux_sym_do_statement_token1] = ACTIONS(1311), + [aux_sym_for_statement_token1] = ACTIONS(1311), + [aux_sym_for_statement_token2] = ACTIONS(1311), + [aux_sym_foreach_statement_token1] = ACTIONS(1311), + [aux_sym_foreach_statement_token2] = ACTIONS(1311), + [aux_sym_if_statement_token1] = ACTIONS(1311), + [aux_sym_if_statement_token2] = ACTIONS(1311), + [aux_sym_else_if_clause_token1] = ACTIONS(1311), + [aux_sym_else_clause_token1] = ACTIONS(1311), + [aux_sym_match_expression_token1] = ACTIONS(1311), + [aux_sym_match_default_expression_token1] = ACTIONS(1311), + [aux_sym_switch_statement_token1] = ACTIONS(1311), + [aux_sym_switch_block_token1] = ACTIONS(1311), + [aux_sym_case_statement_token1] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_clone] = ACTIONS(1311), + [anon_sym_print] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(1311), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [sym_shell_command_expression] = ACTIONS(1309), + [anon_sym_list] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_self] = ACTIONS(1311), + [anon_sym_parent] = ACTIONS(1311), + [anon_sym_POUND_LBRACK] = ACTIONS(1309), + [sym_string] = ACTIONS(1309), + [sym_boolean] = ACTIONS(1311), + [sym_null] = ACTIONS(1311), + [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_yield] = ACTIONS(1311), + [aux_sym_include_expression_token1] = ACTIONS(1311), + [aux_sym_include_once_expression_token1] = ACTIONS(1311), + [aux_sym_require_expression_token1] = ACTIONS(1311), + [aux_sym_require_once_expression_token1] = ACTIONS(1311), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1309), + }, + [514] = { + [sym_text_interpolation] = STATE(514), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_name] = ACTIONS(1315), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1313), + [aux_sym_function_static_declaration_token1] = ACTIONS(1315), + [aux_sym_global_declaration_token1] = ACTIONS(1315), + [aux_sym_namespace_definition_token1] = ACTIONS(1315), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1315), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1315), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1315), + [anon_sym_BSLASH] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1313), + [aux_sym_trait_declaration_token1] = ACTIONS(1315), + [aux_sym_interface_declaration_token1] = ACTIONS(1315), + [aux_sym_class_declaration_token1] = ACTIONS(1315), + [aux_sym_class_modifier_token1] = ACTIONS(1315), + [aux_sym_class_modifier_token2] = ACTIONS(1315), + [aux_sym_visibility_modifier_token1] = ACTIONS(1315), + [aux_sym_visibility_modifier_token2] = ACTIONS(1315), + [aux_sym_visibility_modifier_token3] = ACTIONS(1315), + [aux_sym_arrow_function_token1] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_array] = ACTIONS(1315), + [anon_sym_unset] = ACTIONS(1315), + [aux_sym_echo_statement_token1] = ACTIONS(1315), + [anon_sym_declare] = ACTIONS(1315), + [aux_sym_declare_statement_token1] = ACTIONS(1315), + [sym_float] = ACTIONS(1315), + [aux_sym_try_statement_token1] = ACTIONS(1315), + [aux_sym_goto_statement_token1] = ACTIONS(1315), + [aux_sym_continue_statement_token1] = ACTIONS(1315), + [aux_sym_break_statement_token1] = ACTIONS(1315), + [sym_integer] = ACTIONS(1315), + [aux_sym_return_statement_token1] = ACTIONS(1315), + [aux_sym_throw_expression_token1] = ACTIONS(1315), + [aux_sym_while_statement_token1] = ACTIONS(1315), + [aux_sym_while_statement_token2] = ACTIONS(1315), + [aux_sym_do_statement_token1] = ACTIONS(1315), + [aux_sym_for_statement_token1] = ACTIONS(1315), + [aux_sym_for_statement_token2] = ACTIONS(1315), + [aux_sym_foreach_statement_token1] = ACTIONS(1315), + [aux_sym_foreach_statement_token2] = ACTIONS(1315), + [aux_sym_if_statement_token1] = ACTIONS(1315), + [aux_sym_if_statement_token2] = ACTIONS(1315), + [aux_sym_else_if_clause_token1] = ACTIONS(1315), + [aux_sym_else_clause_token1] = ACTIONS(1315), + [aux_sym_match_expression_token1] = ACTIONS(1315), + [aux_sym_match_default_expression_token1] = ACTIONS(1315), + [aux_sym_switch_statement_token1] = ACTIONS(1315), + [aux_sym_switch_block_token1] = ACTIONS(1315), + [aux_sym_case_statement_token1] = ACTIONS(1315), + [anon_sym_AT] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_clone] = ACTIONS(1315), + [anon_sym_print] = ACTIONS(1315), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [sym_shell_command_expression] = ACTIONS(1313), + [anon_sym_list] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1313), + [anon_sym_self] = ACTIONS(1315), + [anon_sym_parent] = ACTIONS(1315), + [anon_sym_POUND_LBRACK] = ACTIONS(1313), + [sym_string] = ACTIONS(1313), + [sym_boolean] = ACTIONS(1315), + [sym_null] = ACTIONS(1315), + [anon_sym_DOLLAR] = ACTIONS(1313), + [anon_sym_yield] = ACTIONS(1315), + [aux_sym_include_expression_token1] = ACTIONS(1315), + [aux_sym_include_once_expression_token1] = ACTIONS(1315), + [aux_sym_require_expression_token1] = ACTIONS(1315), + [aux_sym_require_once_expression_token1] = ACTIONS(1315), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1313), + }, + [515] = { + [sym_text_interpolation] = STATE(515), + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_name] = ACTIONS(1319), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1317), + [aux_sym_function_static_declaration_token1] = ACTIONS(1319), + [aux_sym_global_declaration_token1] = ACTIONS(1319), + [aux_sym_namespace_definition_token1] = ACTIONS(1319), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1319), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1319), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1319), + [anon_sym_BSLASH] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [aux_sym_trait_declaration_token1] = ACTIONS(1319), + [aux_sym_interface_declaration_token1] = ACTIONS(1319), + [aux_sym_class_declaration_token1] = ACTIONS(1319), + [aux_sym_class_modifier_token1] = ACTIONS(1319), + [aux_sym_class_modifier_token2] = ACTIONS(1319), + [aux_sym_visibility_modifier_token1] = ACTIONS(1319), + [aux_sym_visibility_modifier_token2] = ACTIONS(1319), + [aux_sym_visibility_modifier_token3] = ACTIONS(1319), + [aux_sym_arrow_function_token1] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_array] = ACTIONS(1319), + [anon_sym_unset] = ACTIONS(1319), + [aux_sym_echo_statement_token1] = ACTIONS(1319), + [anon_sym_declare] = ACTIONS(1319), + [aux_sym_declare_statement_token1] = ACTIONS(1319), + [sym_float] = ACTIONS(1319), + [aux_sym_try_statement_token1] = ACTIONS(1319), + [aux_sym_goto_statement_token1] = ACTIONS(1319), + [aux_sym_continue_statement_token1] = ACTIONS(1319), + [aux_sym_break_statement_token1] = ACTIONS(1319), + [sym_integer] = ACTIONS(1319), + [aux_sym_return_statement_token1] = ACTIONS(1319), + [aux_sym_throw_expression_token1] = ACTIONS(1319), + [aux_sym_while_statement_token1] = ACTIONS(1319), + [aux_sym_while_statement_token2] = ACTIONS(1319), + [aux_sym_do_statement_token1] = ACTIONS(1319), + [aux_sym_for_statement_token1] = ACTIONS(1319), + [aux_sym_for_statement_token2] = ACTIONS(1319), + [aux_sym_foreach_statement_token1] = ACTIONS(1319), + [aux_sym_foreach_statement_token2] = ACTIONS(1319), + [aux_sym_if_statement_token1] = ACTIONS(1319), + [aux_sym_if_statement_token2] = ACTIONS(1319), + [aux_sym_else_if_clause_token1] = ACTIONS(1319), + [aux_sym_else_clause_token1] = ACTIONS(1319), + [aux_sym_match_expression_token1] = ACTIONS(1319), + [aux_sym_match_default_expression_token1] = ACTIONS(1319), + [aux_sym_switch_statement_token1] = ACTIONS(1319), + [aux_sym_switch_block_token1] = ACTIONS(1319), + [aux_sym_case_statement_token1] = ACTIONS(1319), + [anon_sym_AT] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_clone] = ACTIONS(1319), + [anon_sym_print] = ACTIONS(1319), + [anon_sym_new] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1317), + [sym_shell_command_expression] = ACTIONS(1317), + [anon_sym_list] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_self] = ACTIONS(1319), + [anon_sym_parent] = ACTIONS(1319), + [anon_sym_POUND_LBRACK] = ACTIONS(1317), + [sym_string] = ACTIONS(1317), + [sym_boolean] = ACTIONS(1319), + [sym_null] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1317), + [anon_sym_yield] = ACTIONS(1319), + [aux_sym_include_expression_token1] = ACTIONS(1319), + [aux_sym_include_once_expression_token1] = ACTIONS(1319), + [aux_sym_require_expression_token1] = ACTIONS(1319), + [aux_sym_require_once_expression_token1] = ACTIONS(1319), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1317), + }, + [516] = { + [sym_text_interpolation] = STATE(516), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_name] = ACTIONS(1323), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1321), + [aux_sym_function_static_declaration_token1] = ACTIONS(1323), + [aux_sym_global_declaration_token1] = ACTIONS(1323), + [aux_sym_namespace_definition_token1] = ACTIONS(1323), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1323), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1323), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1323), + [anon_sym_BSLASH] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [aux_sym_trait_declaration_token1] = ACTIONS(1323), + [aux_sym_interface_declaration_token1] = ACTIONS(1323), + [aux_sym_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(1321), + [anon_sym_array] = ACTIONS(1323), + [anon_sym_unset] = ACTIONS(1323), + [aux_sym_echo_statement_token1] = ACTIONS(1323), + [anon_sym_declare] = ACTIONS(1323), + [aux_sym_declare_statement_token1] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [aux_sym_try_statement_token1] = ACTIONS(1323), + [aux_sym_goto_statement_token1] = ACTIONS(1323), + [aux_sym_continue_statement_token1] = ACTIONS(1323), + [aux_sym_break_statement_token1] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [aux_sym_return_statement_token1] = ACTIONS(1323), + [aux_sym_throw_expression_token1] = ACTIONS(1323), + [aux_sym_while_statement_token1] = ACTIONS(1323), + [aux_sym_while_statement_token2] = ACTIONS(1323), + [aux_sym_do_statement_token1] = ACTIONS(1323), + [aux_sym_for_statement_token1] = ACTIONS(1323), + [aux_sym_for_statement_token2] = ACTIONS(1323), + [aux_sym_foreach_statement_token1] = ACTIONS(1323), + [aux_sym_foreach_statement_token2] = ACTIONS(1323), + [aux_sym_if_statement_token1] = ACTIONS(1323), + [aux_sym_if_statement_token2] = ACTIONS(1323), + [aux_sym_else_if_clause_token1] = ACTIONS(1323), + [aux_sym_else_clause_token1] = ACTIONS(1323), + [aux_sym_match_expression_token1] = ACTIONS(1323), + [aux_sym_match_default_expression_token1] = ACTIONS(1323), + [aux_sym_switch_statement_token1] = ACTIONS(1323), + [aux_sym_switch_block_token1] = ACTIONS(1323), + [aux_sym_case_statement_token1] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_clone] = ACTIONS(1323), + [anon_sym_print] = ACTIONS(1323), + [anon_sym_new] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1321), + [sym_shell_command_expression] = ACTIONS(1321), + [anon_sym_list] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1321), + [anon_sym_self] = ACTIONS(1323), + [anon_sym_parent] = ACTIONS(1323), + [anon_sym_POUND_LBRACK] = ACTIONS(1321), + [sym_string] = ACTIONS(1321), + [sym_boolean] = ACTIONS(1323), + [sym_null] = ACTIONS(1323), + [anon_sym_DOLLAR] = ACTIONS(1321), + [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_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1321), + }, + [517] = { + [sym_text_interpolation] = STATE(517), + [sym_name] = ACTIONS(1325), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1327), + [aux_sym_function_static_declaration_token1] = ACTIONS(1325), + [aux_sym_global_declaration_token1] = ACTIONS(1325), + [aux_sym_namespace_definition_token1] = ACTIONS(1325), + [aux_sym_namespace_use_declaration_token1] = ACTIONS(1325), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(1325), + [aux_sym_namespace_use_declaration_token3] = ACTIONS(1325), + [anon_sym_BSLASH] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1327), + [aux_sym_trait_declaration_token1] = ACTIONS(1325), + [aux_sym_interface_declaration_token1] = ACTIONS(1325), + [aux_sym_class_declaration_token1] = ACTIONS(1325), + [aux_sym_class_modifier_token1] = ACTIONS(1325), + [aux_sym_class_modifier_token2] = ACTIONS(1325), + [aux_sym_visibility_modifier_token1] = ACTIONS(1325), + [aux_sym_visibility_modifier_token2] = ACTIONS(1325), + [aux_sym_visibility_modifier_token3] = ACTIONS(1325), + [aux_sym_arrow_function_token1] = ACTIONS(1325), + [anon_sym_LPAREN] = ACTIONS(1327), + [anon_sym_array] = ACTIONS(1325), + [anon_sym_unset] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(1327), + [aux_sym_echo_statement_token1] = ACTIONS(1325), + [anon_sym_declare] = ACTIONS(1325), + [sym_float] = ACTIONS(1325), + [aux_sym_try_statement_token1] = ACTIONS(1325), + [aux_sym_goto_statement_token1] = ACTIONS(1325), + [aux_sym_continue_statement_token1] = ACTIONS(1325), + [aux_sym_break_statement_token1] = ACTIONS(1325), + [sym_integer] = ACTIONS(1325), + [aux_sym_return_statement_token1] = ACTIONS(1325), + [aux_sym_throw_expression_token1] = ACTIONS(1325), + [aux_sym_while_statement_token1] = ACTIONS(1325), + [aux_sym_do_statement_token1] = ACTIONS(1325), + [aux_sym_for_statement_token1] = ACTIONS(1325), + [aux_sym_foreach_statement_token1] = ACTIONS(1325), + [aux_sym_if_statement_token1] = ACTIONS(1325), + [aux_sym_match_expression_token1] = ACTIONS(1325), + [aux_sym_switch_statement_token1] = ACTIONS(1325), + [anon_sym_AT] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_clone] = ACTIONS(1325), + [anon_sym_print] = ACTIONS(1325), + [anon_sym_new] = ACTIONS(1325), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [sym_shell_command_expression] = ACTIONS(1327), + [anon_sym_list] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_self] = ACTIONS(1325), + [anon_sym_parent] = ACTIONS(1325), + [anon_sym_POUND_LBRACK] = ACTIONS(1327), + [sym_string] = ACTIONS(1327), + [sym_boolean] = ACTIONS(1325), + [sym_null] = ACTIONS(1325), + [anon_sym_DOLLAR] = ACTIONS(1327), + [anon_sym_yield] = ACTIONS(1325), + [aux_sym_include_expression_token1] = ACTIONS(1325), + [aux_sym_include_once_expression_token1] = ACTIONS(1325), + [aux_sym_require_expression_token1] = ACTIONS(1325), + [aux_sym_require_once_expression_token1] = ACTIONS(1325), + [sym_comment] = ACTIONS(5), + [sym_heredoc] = ACTIONS(1327), + }, + [518] = { + [sym_text_interpolation] = STATE(518), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2044), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__unary_expression] = STATE(737), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(970), + [sym__primary_expression] = STATE(970), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(546), + [sym_member_access_expression] = STATE(546), + [sym_nullsafe_member_access_expression] = STATE(546), + [sym_scoped_property_access_expression] = STATE(546), + [sym_function_call_expression] = STATE(531), + [sym_scoped_call_expression] = STATE(531), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(531), + [sym_nullsafe_member_call_expression] = STATE(531), + [sym_subscript_expression] = STATE(531), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(531), + [sym_variable_name] = STATE(531), + [sym__reserved_identifier] = STATE(603), + [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(642), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_clone] = ACTIONS(656), + [anon_sym_print] = ACTIONS(658), + [anon_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(1329), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), + }, + [519] = { + [sym_text_interpolation] = STATE(519), + [sym_qualified_name] = STATE(677), + [sym_namespace_name_as_prefix] = STATE(1311), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1954), + [sym_arrow_function] = STATE(893), + [sym_throw_expression] = STATE(893), + [sym__unary_expression] = STATE(908), + [sym_unary_op_expression] = STATE(934), + [sym_exponentiation_expression] = STATE(934), + [sym_clone_expression] = STATE(944), + [sym__primary_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(672), + [sym_class_constant_access_expression] = STATE(736), + [sym_print_intrinsic] = STATE(893), + [sym_anonymous_function_creation_expression] = STATE(893), + [sym_object_creation_expression] = STATE(893), + [sym_update_expression] = STATE(893), + [sym_cast_expression] = STATE(934), + [sym_cast_variable] = STATE(585), + [sym_member_access_expression] = STATE(585), + [sym_nullsafe_member_access_expression] = STATE(585), + [sym_scoped_property_access_expression] = STATE(585), + [sym_function_call_expression] = STATE(559), + [sym_scoped_call_expression] = STATE(559), + [sym__scope_resolution_qualifier] = STATE(1998), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(559), + [sym_nullsafe_member_call_expression] = STATE(559), + [sym_subscript_expression] = STATE(559), + [sym__dereferencable_expression] = STATE(1318), + [sym_array_creation_expression] = STATE(672), + [sym__string] = STATE(672), + [sym_dynamic_variable_name] = STATE(559), + [sym_variable_name] = STATE(559), + [sym__reserved_identifier] = STATE(688), + [sym_name] = ACTIONS(628), + [anon_sym_QMARK_GT] = ACTIONS(3), + [aux_sym_function_static_declaration_token1] = ACTIONS(630), + [aux_sym_namespace_definition_token1] = ACTIONS(534), + [aux_sym_namespace_use_declaration_token2] = ACTIONS(632), + [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(1331), + [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(592), + [sym_heredoc] = ACTIONS(279), + }, + [520] = { + [sym_text_interpolation] = STATE(520), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(2019), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__unary_expression] = STATE(737), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(844), + [sym__primary_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(546), + [sym_member_access_expression] = STATE(546), + [sym_nullsafe_member_access_expression] = STATE(546), + [sym_scoped_property_access_expression] = STATE(546), + [sym_function_call_expression] = STATE(531), + [sym_scoped_call_expression] = STATE(531), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(531), + [sym_nullsafe_member_call_expression] = STATE(531), + [sym_subscript_expression] = STATE(531), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(531), + [sym_variable_name] = STATE(531), + [sym__reserved_identifier] = STATE(603), + [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(596), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_array] = ACTIONS(548), + [sym_float] = ACTIONS(550), + [sym_integer] = ACTIONS(550), + [aux_sym_throw_expression_token1] = ACTIONS(602), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(608), + [anon_sym_clone] = ACTIONS(610), + [anon_sym_print] = ACTIONS(612), + [anon_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(1329), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), + }, + [521] = { + [sym_text_interpolation] = STATE(521), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__unary_expression] = STATE(737), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(587), + [sym_member_access_expression] = STATE(587), + [sym_nullsafe_member_access_expression] = STATE(587), + [sym_scoped_property_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(548), + [sym_scoped_call_expression] = STATE(548), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(548), + [sym_nullsafe_member_call_expression] = STATE(548), + [sym_subscript_expression] = STATE(548), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(548), + [sym_variable_name] = STATE(548), + [sym__reserved_identifier] = STATE(603), + [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(774), + [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(1329), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), + }, + [522] = { + [sym_text_interpolation] = STATE(522), + [sym_qualified_name] = STATE(608), + [sym_namespace_name_as_prefix] = STATE(1298), + [sym_namespace_name] = STATE(1957), + [sym_static_modifier] = STATE(1970), + [sym_arrow_function] = STATE(743), + [sym_throw_expression] = STATE(743), + [sym__unary_expression] = STATE(737), + [sym_unary_op_expression] = STATE(739), + [sym_exponentiation_expression] = STATE(739), + [sym_clone_expression] = STATE(788), + [sym__primary_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(611), + [sym_class_constant_access_expression] = STATE(664), + [sym_print_intrinsic] = STATE(743), + [sym_anonymous_function_creation_expression] = STATE(743), + [sym_object_creation_expression] = STATE(743), + [sym_update_expression] = STATE(743), + [sym_cast_expression] = STATE(739), + [sym_cast_variable] = STATE(546), + [sym_member_access_expression] = STATE(546), + [sym_nullsafe_member_access_expression] = STATE(546), + [sym_scoped_property_access_expression] = STATE(546), + [sym_function_call_expression] = STATE(531), + [sym_scoped_call_expression] = STATE(531), + [sym__scope_resolution_qualifier] = STATE(2042), + [sym_relative_scope] = STATE(1919), + [sym_member_call_expression] = STATE(531), + [sym_nullsafe_member_call_expression] = STATE(531), + [sym_subscript_expression] = STATE(531), + [sym__dereferencable_expression] = STATE(1344), + [sym_array_creation_expression] = STATE(611), + [sym__string] = STATE(611), + [sym_dynamic_variable_name] = STATE(531), + [sym_variable_name] = STATE(531), + [sym__reserved_identifier] = STATE(603), + [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(1329), + [anon_sym_self] = ACTIONS(574), + [anon_sym_parent] = ACTIONS(574), + [sym_string] = ACTIONS(576), + [sym_boolean] = ACTIONS(550), + [sym_null] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(578), + [sym_comment] = ACTIONS(592), + [sym_heredoc] = ACTIONS(576), + }, + [523] = { + [sym_text_interpolation] = STATE(523), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1335), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [aux_sym_base_clause_token1] = ACTIONS(1333), + [aux_sym_class_interface_clause_token1] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_EQ_GT] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_RPAREN] = ACTIONS(1333), + [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_COLON] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_STAR_STAR] = ACTIONS(1335), + [anon_sym_COLON_COLON] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1333), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_DOT_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1333), + [anon_sym_DASH_GT] = ACTIONS(1333), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_RBRACK] = ACTIONS(1333), + [aux_sym_binary_expression_token1] = ACTIONS(1333), + [anon_sym_QMARK_QMARK] = ACTIONS(1335), + [aux_sym_binary_expression_token2] = ACTIONS(1333), + [aux_sym_binary_expression_token3] = ACTIONS(1333), + [aux_sym_binary_expression_token4] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_EQ_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_LT_GT] = ACTIONS(1333), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1333), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ_GT] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1335), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_PERCENT] = ACTIONS(1335), + [sym_comment] = ACTIONS(592), + }, + [524] = { + [sym_text_interpolation] = STATE(524), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_EQ] = ACTIONS(1339), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [aux_sym_base_clause_token1] = ACTIONS(1337), + [aux_sym_class_interface_clause_token1] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_EQ_GT] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1337), + [anon_sym_QMARK] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1339), + [anon_sym_COLON] = ACTIONS(1339), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_STAR_STAR] = ACTIONS(1339), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1337), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1337), + [anon_sym_STAR_EQ] = ACTIONS(1337), + [anon_sym_SLASH_EQ] = ACTIONS(1337), + [anon_sym_PERCENT_EQ] = ACTIONS(1337), + [anon_sym_PLUS_EQ] = ACTIONS(1337), + [anon_sym_DASH_EQ] = ACTIONS(1337), + [anon_sym_DOT_EQ] = ACTIONS(1337), + [anon_sym_LT_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_GT_EQ] = ACTIONS(1337), + [anon_sym_AMP_EQ] = ACTIONS(1337), + [anon_sym_CARET_EQ] = ACTIONS(1337), + [anon_sym_PIPE_EQ] = ACTIONS(1337), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1337), + [anon_sym_DASH_GT] = ACTIONS(1337), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_RBRACK] = ACTIONS(1337), + [aux_sym_binary_expression_token1] = ACTIONS(1337), + [anon_sym_QMARK_QMARK] = ACTIONS(1339), + [aux_sym_binary_expression_token2] = ACTIONS(1337), + [aux_sym_binary_expression_token3] = ACTIONS(1337), + [aux_sym_binary_expression_token4] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_LT_GT] = ACTIONS(1337), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1337), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1339), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ_GT] = ACTIONS(1337), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1339), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [sym_comment] = ACTIONS(592), + }, + [525] = { + [sym_text_interpolation] = STATE(525), + [anon_sym_QMARK_GT] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_EQ] = ACTIONS(1343), + [aux_sym_namespace_aliasing_clause_token1] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [aux_sym_base_clause_token1] = ACTIONS(1341), + [aux_sym_class_interface_clause_token1] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_EQ_GT] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_QMARK] = ACTIONS(1343), + [anon_sym_PIPE] = ACTIONS(1343), + [anon_sym_COLON] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_STAR_STAR] = ACTIONS(1343), + [anon_sym_COLON_COLON] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1341), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1341), + [anon_sym_STAR_EQ] = ACTIONS(1341), + [anon_sym_SLASH_EQ] = ACTIONS(1341), + [anon_sym_PERCENT_EQ] = ACTIONS(1341), + [anon_sym_PLUS_EQ] = ACTIONS(1341), + [anon_sym_DASH_EQ] = ACTIONS(1341), + [anon_sym_DOT_EQ] = ACTIONS(1341), + [anon_sym_LT_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_GT_EQ] = ACTIONS(1341), + [anon_sym_AMP_EQ] = ACTIONS(1341), + [anon_sym_CARET_EQ] = ACTIONS(1341), + [anon_sym_PIPE_EQ] = ACTIONS(1341), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1341), + [anon_sym_DASH_GT] = ACTIONS(1341), + [anon_sym_QMARK_DASH_GT] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_RBRACK] = ACTIONS(1341), + [aux_sym_binary_expression_token1] = ACTIONS(1341), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [aux_sym_binary_expression_token2] = ACTIONS(1341), + [aux_sym_binary_expression_token3] = ACTIONS(1341), + [aux_sym_binary_expression_token4] = ACTIONS(1341), + [anon_sym_PIPE_PIPE] = ACTIONS(1341), + [anon_sym_AMP_AMP] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT_GT] = ACTIONS(1341), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1343), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_LT_EQ_GT] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1343), + [anon_sym_DOT] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [sym_comment] = ACTIONS(592), }, }; @@ -58484,15 +60805,15 @@ static uint16_t ts_small_parse_table[] = { [0] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(508), 1, + STATE(526), 1, sym_text_interpolation, - STATE(522), 1, + STATE(534), 1, sym_arguments, - ACTIONS(1274), 21, + ACTIONS(1347), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -58514,7 +60835,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1272), 38, + ACTIONS(1345), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -58556,15 +60877,15 @@ static uint16_t ts_small_parse_table[] = { [79] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(509), 1, + STATE(527), 1, sym_text_interpolation, - STATE(519), 1, + STATE(535), 1, sym_arguments, - ACTIONS(1280), 21, + ACTIONS(1353), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -58586,7 +60907,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1278), 38, + ACTIONS(1351), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -58628,15 +60949,15 @@ static uint16_t ts_small_parse_table[] = { [158] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(510), 1, + STATE(528), 1, sym_text_interpolation, - STATE(526), 1, + STATE(544), 1, sym_arguments, - ACTIONS(1284), 21, + ACTIONS(1357), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -58658,7 +60979,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1282), 38, + ACTIONS(1355), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -58700,15 +61021,15 @@ static uint16_t ts_small_parse_table[] = { [237] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(511), 1, + STATE(529), 1, sym_text_interpolation, - STATE(524), 1, + STATE(542), 1, sym_arguments, - ACTIONS(1288), 21, + ACTIONS(1361), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -58730,7 +61051,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1286), 38, + ACTIONS(1359), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -58772,15 +61093,15 @@ static uint16_t ts_small_parse_table[] = { [316] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(512), 1, + STATE(530), 1, sym_text_interpolation, - STATE(520), 1, + STATE(533), 1, sym_arguments, - ACTIONS(1292), 21, + ACTIONS(1365), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -58802,7 +61123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1290), 38, + ACTIONS(1363), 38, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -58844,26 +61165,26 @@ static uint16_t ts_small_parse_table[] = { [395] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1296), 1, + ACTIONS(1369), 1, anon_sym_EQ, - STATE(513), 1, + STATE(531), 1, sym_text_interpolation, - STATE(517), 1, + STATE(532), 1, sym_arguments, - ACTIONS(1302), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1304), 13, + ACTIONS(1377), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -58877,7 +61198,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1294), 18, + ACTIONS(1367), 18, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -58896,7 +61217,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1300), 20, + ACTIONS(1373), 20, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -58920,11 +61241,11 @@ static uint16_t ts_small_parse_table[] = { [482] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(514), 1, + STATE(532), 1, sym_text_interpolation, - ACTIONS(1308), 21, + ACTIONS(1381), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -58946,7 +61267,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1306), 39, + ACTIONS(1379), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -58989,11 +61310,11 @@ static uint16_t ts_small_parse_table[] = { [556] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(515), 1, + STATE(533), 1, sym_text_interpolation, - ACTIONS(1312), 21, + ACTIONS(1385), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59015,7 +61336,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1310), 39, + ACTIONS(1383), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59058,11 +61379,11 @@ static uint16_t ts_small_parse_table[] = { [630] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(516), 1, + STATE(534), 1, sym_text_interpolation, - ACTIONS(1316), 21, + ACTIONS(1389), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59084,7 +61405,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1314), 39, + ACTIONS(1387), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59127,11 +61448,11 @@ static uint16_t ts_small_parse_table[] = { [704] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(517), 1, + STATE(535), 1, sym_text_interpolation, - ACTIONS(1320), 21, + ACTIONS(1393), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59153,7 +61474,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1318), 39, + ACTIONS(1391), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59196,11 +61517,11 @@ static uint16_t ts_small_parse_table[] = { [778] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(518), 1, + STATE(536), 1, sym_text_interpolation, - ACTIONS(1324), 21, + ACTIONS(1397), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59222,7 +61543,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1322), 39, + ACTIONS(1395), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59265,11 +61586,11 @@ static uint16_t ts_small_parse_table[] = { [852] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(519), 1, + STATE(537), 1, sym_text_interpolation, - ACTIONS(1328), 21, + ACTIONS(1401), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59291,7 +61612,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1326), 39, + ACTIONS(1399), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59334,11 +61655,11 @@ static uint16_t ts_small_parse_table[] = { [926] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(520), 1, + STATE(538), 1, sym_text_interpolation, - ACTIONS(1332), 21, + ACTIONS(1405), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59360,7 +61681,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1330), 39, + ACTIONS(1403), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59403,11 +61724,11 @@ static uint16_t ts_small_parse_table[] = { [1000] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(521), 1, + STATE(539), 1, sym_text_interpolation, - ACTIONS(1336), 21, + ACTIONS(1409), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59429,7 +61750,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1334), 39, + ACTIONS(1407), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59472,11 +61793,11 @@ static uint16_t ts_small_parse_table[] = { [1074] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(522), 1, + STATE(540), 1, sym_text_interpolation, - ACTIONS(1340), 21, + ACTIONS(1413), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59498,7 +61819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1338), 39, + ACTIONS(1411), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59541,11 +61862,11 @@ static uint16_t ts_small_parse_table[] = { [1148] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(523), 1, + STATE(541), 1, sym_text_interpolation, - ACTIONS(1344), 21, + ACTIONS(1417), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59567,7 +61888,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1342), 39, + ACTIONS(1415), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59610,11 +61931,11 @@ static uint16_t ts_small_parse_table[] = { [1222] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(524), 1, + STATE(542), 1, sym_text_interpolation, - ACTIONS(1348), 21, + ACTIONS(1421), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59636,7 +61957,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1346), 39, + ACTIONS(1419), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59679,11 +62000,11 @@ static uint16_t ts_small_parse_table[] = { [1296] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(525), 1, + STATE(543), 1, sym_text_interpolation, - ACTIONS(1352), 21, + ACTIONS(1425), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59705,7 +62026,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1350), 39, + ACTIONS(1423), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59748,11 +62069,11 @@ static uint16_t ts_small_parse_table[] = { [1370] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(526), 1, + STATE(544), 1, sym_text_interpolation, - ACTIONS(1356), 21, + ACTIONS(1429), 21, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -59774,7 +62095,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1354), 39, + ACTIONS(1427), 39, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -59814,25 +62135,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [1444] = 9, + [1444] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1296), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1431), 1, anon_sym_EQ, - STATE(527), 1, + STATE(532), 1, + sym_arguments, + STATE(545), 1, sym_text_interpolation, - ACTIONS(1302), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1304), 13, + ACTIONS(1433), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -59846,14 +62171,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1294), 18, + ACTIONS(1367), 16, anon_sym_SEMI, - anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -59865,7 +62188,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1300), 20, + ACTIONS(1373), 20, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -59886,29 +62209,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [1525] = 11, + [1529] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - ACTIONS(1358), 1, + ACTIONS(1369), 1, anon_sym_EQ, - STATE(517), 1, - sym_arguments, - STATE(528), 1, + STATE(546), 1, sym_text_interpolation, - ACTIONS(1302), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1360), 13, + ACTIONS(1377), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -59922,12 +62241,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1294), 16, + ACTIONS(1367), 18, anon_sym_SEMI, + anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RPAREN, + anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -59939,7 +62260,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1300), 20, + ACTIONS(1373), 20, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -59963,26 +62284,26 @@ static uint16_t ts_small_parse_table[] = { [1610] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1362), 1, + ACTIONS(1435), 1, anon_sym_EQ, - STATE(517), 1, + STATE(532), 1, sym_arguments, - STATE(529), 1, + STATE(547), 1, sym_text_interpolation, - ACTIONS(1302), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1364), 13, + ACTIONS(1437), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -59996,7 +62317,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1294), 16, + ACTIONS(1367), 16, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -60013,39 +62334,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1300), 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, - [1694] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1366), 1, - anon_sym_LPAREN, - STATE(530), 1, - sym_text_interpolation, - STATE(547), 1, - sym_arguments, - ACTIONS(1288), 20, - anon_sym_EQ, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -60065,71 +62354,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1286), 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, - [1769] = 14, + [1694] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1362), 1, + ACTIONS(1369), 1, anon_sym_EQ, - ACTIONS(1368), 1, - anon_sym_COMMA, - ACTIONS(1371), 1, - anon_sym_RBRACK, - STATE(517), 1, + STATE(532), 1, sym_arguments, - STATE(531), 1, + STATE(548), 1, sym_text_interpolation, - STATE(1448), 1, - aux_sym__array_destructing_repeat1, - ACTIONS(1302), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1294), 12, + ACTIONS(1367), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -60142,7 +62389,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1364), 13, + ACTIONS(1377), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -60156,39 +62405,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1300), 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, - [1858] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1366), 1, - anon_sym_LPAREN, - STATE(532), 1, - sym_text_interpolation, - STATE(551), 1, - sym_arguments, - ACTIONS(1284), 20, - anon_sym_EQ, + anon_sym_RBRACK, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -60208,133 +62426,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1282), 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, - [1933] = 37, + [1777] = 37, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(525), 1, + ACTIONS(528), 1, sym_name, - ACTIONS(529), 1, + ACTIONS(532), 1, aux_sym_function_static_declaration_token1, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(533), 1, + ACTIONS(536), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(563), 1, - anon_sym_new, - ACTIONS(567), 1, - sym_shell_command_expression, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(591), 1, + ACTIONS(542), 1, aux_sym_arrow_function_token1, - ACTIONS(597), 1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(552), 1, aux_sym_throw_expression_token1, - ACTIONS(605), 1, + ACTIONS(562), 1, anon_sym_clone, - ACTIONS(607), 1, + ACTIONS(564), 1, anon_sym_print, - ACTIONS(1252), 1, + ACTIONS(566), 1, + anon_sym_new, + ACTIONS(570), 1, + sym_shell_command_expression, + ACTIONS(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1329), 1, anon_sym_LBRACK, - ACTIONS(1374), 1, + ACTIONS(1439), 1, anon_sym_LPAREN, - STATE(533), 1, + STATE(549), 1, sym_text_interpolation, - STATE(584), 1, + STATE(603), 1, sym__reserved_identifier, - STATE(601), 1, + STATE(608), 1, sym_qualified_name, - STATE(639), 1, + STATE(664), 1, sym_class_constant_access_expression, - STATE(720), 1, + STATE(747), 1, sym_exponentiation_expression, - STATE(1284), 1, + STATE(1298), 1, sym_namespace_name_as_prefix, - STATE(1286), 1, + STATE(1344), 1, sym__dereferencable_expression, - STATE(1895), 1, - sym_static_modifier, - STATE(1897), 1, + STATE(1919), 1, sym_relative_scope, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - STATE(1928), 1, + STATE(1970), 1, + sym_static_modifier, + STATE(2042), 1, sym__scope_resolution_qualifier, - ACTIONS(565), 2, + ACTIONS(568), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(571), 2, + ACTIONS(574), 2, anon_sym_self, anon_sym_parent, - ACTIONS(573), 2, + ACTIONS(576), 2, sym_heredoc, sym_string, - STATE(816), 2, + STATE(811), 2, sym_clone_expression, sym__primary_expression, - STATE(608), 3, + STATE(611), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - ACTIONS(547), 4, + ACTIONS(550), 4, sym_float, sym_integer, sym_boolean, sym_null, - STATE(596), 4, + STATE(623), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(747), 6, + STATE(743), 6, sym_arrow_function, sym_throw_expression, sym_print_intrinsic, sym_anonymous_function_creation_expression, sym_object_creation_expression, sym_update_expression, - STATE(581), 7, + STATE(598), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -60342,25 +62524,29 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [2068] = 9, + [1912] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1358), 1, + ACTIONS(1441), 1, anon_sym_EQ, - STATE(534), 1, + ACTIONS(1443), 1, + anon_sym_LPAREN, + STATE(550), 1, sym_text_interpolation, - ACTIONS(1302), 2, + STATE(570), 1, + sym_arguments, + ACTIONS(1445), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1360), 13, + ACTIONS(1447), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -60374,12 +62560,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1294), 16, + ACTIONS(1367), 15, + sym__automatic_semicolon, anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + 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, @@ -60391,11 +62576,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1300), 20, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR_STAR, @@ -60412,29 +62596,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2147] = 11, + [1995] = 37, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + 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(592), 1, sym_comment, - ACTIONS(1296), 1, - anon_sym_EQ, - ACTIONS(1366), 1, + ACTIONS(628), 1, + sym_name, + ACTIONS(630), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(632), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1331), 1, + anon_sym_LBRACK, + ACTIONS(1449), 1, anon_sym_LPAREN, - STATE(535), 1, + STATE(551), 1, sym_text_interpolation, - STATE(558), 1, - sym_arguments, - ACTIONS(1376), 2, + STATE(677), 1, + sym_qualified_name, + STATE(688), 1, + sym__reserved_identifier, + STATE(736), 1, + sym_class_constant_access_expression, + STATE(920), 1, + sym_exponentiation_expression, + STATE(1311), 1, + sym_namespace_name_as_prefix, + STATE(1318), 1, + sym__dereferencable_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1954), 1, + sym_static_modifier, + STATE(1957), 1, + sym_namespace_name, + STATE(1998), 1, + sym__scope_resolution_qualifier, + ACTIONS(267), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(275), 2, + anon_sym_self, + anon_sym_parent, + ACTIONS(279), 2, + sym_heredoc, + sym_string, + STATE(939), 2, + sym_clone_expression, + sym__primary_expression, + STATE(672), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + ACTIONS(225), 4, + sym_float, + sym_integer, + sym_boolean, + sym_null, + STATE(705), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(893), 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, + [2130] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1443), 1, + anon_sym_LPAREN, + STATE(552), 1, + sym_text_interpolation, + STATE(581), 1, + sym_arguments, + ACTIONS(1357), 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(1355), 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(1304), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -60448,11 +62748,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1294), 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, @@ -60464,7 +62762,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1300), 19, + [2205] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1443), 1, + anon_sym_LPAREN, + STATE(553), 1, + sym_text_interpolation, + STATE(579), 1, + sym_arguments, + ACTIONS(1361), 20, + anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -60484,195 +62794,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2230] = 37, + ACTIONS(1359), 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, + [2280] = 37, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(525), 1, + ACTIONS(528), 1, sym_name, - ACTIONS(529), 1, + ACTIONS(532), 1, aux_sym_function_static_declaration_token1, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(533), 1, + ACTIONS(536), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(545), 1, + ACTIONS(548), 1, anon_sym_array, - ACTIONS(563), 1, + ACTIONS(566), 1, anon_sym_new, - ACTIONS(567), 1, + ACTIONS(570), 1, sym_shell_command_expression, - ACTIONS(575), 1, + ACTIONS(578), 1, anon_sym_DOLLAR, - ACTIONS(637), 1, - aux_sym_arrow_function_token1, - ACTIONS(643), 1, - aux_sym_throw_expression_token1, - ACTIONS(651), 1, - anon_sym_clone, - ACTIONS(653), 1, - anon_sym_print, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1374), 1, - anon_sym_LPAREN, - STATE(536), 1, - sym_text_interpolation, - STATE(584), 1, - sym__reserved_identifier, - STATE(601), 1, - sym_qualified_name, - STATE(639), 1, - sym_class_constant_access_expression, - STATE(720), 1, - sym_exponentiation_expression, - STATE(1284), 1, - sym_namespace_name_as_prefix, - STATE(1286), 1, - sym__dereferencable_expression, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - STATE(1920), 1, - sym_static_modifier, - STATE(1928), 1, - sym__scope_resolution_qualifier, - ACTIONS(565), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(571), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - STATE(970), 2, - sym_clone_expression, - sym__primary_expression, - STATE(608), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - ACTIONS(547), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(596), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(747), 6, - sym_arrow_function, - sym_throw_expression, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_expression, - STATE(581), 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, - [2365] = 37, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(529), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(533), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(539), 1, + ACTIONS(642), 1, aux_sym_arrow_function_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(549), 1, + ACTIONS(648), 1, aux_sym_throw_expression_token1, - ACTIONS(559), 1, + ACTIONS(656), 1, anon_sym_clone, - ACTIONS(561), 1, + ACTIONS(658), 1, anon_sym_print, - ACTIONS(563), 1, - anon_sym_new, - ACTIONS(567), 1, - sym_shell_command_expression, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(1252), 1, + ACTIONS(1329), 1, anon_sym_LBRACK, - ACTIONS(1374), 1, + ACTIONS(1439), 1, anon_sym_LPAREN, - STATE(537), 1, + STATE(554), 1, sym_text_interpolation, - STATE(584), 1, + STATE(603), 1, sym__reserved_identifier, - STATE(601), 1, + STATE(608), 1, sym_qualified_name, - STATE(639), 1, + STATE(664), 1, sym_class_constant_access_expression, - STATE(720), 1, + STATE(747), 1, sym_exponentiation_expression, - STATE(1284), 1, + STATE(1298), 1, sym_namespace_name_as_prefix, - STATE(1286), 1, + STATE(1344), 1, sym__dereferencable_expression, - STATE(1848), 1, - sym_static_modifier, - STATE(1897), 1, + STATE(1919), 1, sym_relative_scope, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - STATE(1928), 1, + STATE(2042), 1, sym__scope_resolution_qualifier, - ACTIONS(565), 2, + STATE(2044), 1, + sym_static_modifier, + ACTIONS(568), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(571), 2, + ACTIONS(574), 2, anon_sym_self, anon_sym_parent, - ACTIONS(573), 2, + ACTIONS(576), 2, sym_heredoc, sym_string, - STATE(785), 2, + STATE(966), 2, sym_clone_expression, sym__primary_expression, - STATE(608), 3, + STATE(611), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - ACTIONS(547), 4, + ACTIONS(550), 4, sym_float, sym_integer, sym_boolean, sym_null, - STATE(596), 4, + STATE(623), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(747), 6, + STATE(743), 6, sym_arrow_function, sym_throw_expression, sym_print_intrinsic, sym_anonymous_function_creation_expression, sym_object_creation_expression, sym_update_expression, - STATE(581), 7, + STATE(598), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -60680,29 +62928,47 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [2500] = 11, + [2415] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - ACTIONS(1378), 1, - anon_sym_EQ, - STATE(538), 1, + STATE(555), 1, sym_text_interpolation, - STATE(558), 1, + STATE(564), 1, sym_arguments, - ACTIONS(1376), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1365), 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(1363), 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(1380), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -60716,11 +62982,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1294), 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, @@ -60732,49 +62996,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1300), 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, - [2583] = 11, + [2490] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(772), 1, + anon_sym_COMMA, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1296), 1, + ACTIONS(1431), 1, anon_sym_EQ, - STATE(517), 1, + ACTIONS(1451), 1, + anon_sym_RPAREN, + STATE(532), 1, sym_arguments, - STATE(539), 1, + STATE(556), 1, sym_text_interpolation, - ACTIONS(1302), 2, + STATE(1683), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1294), 12, + ACTIONS(1367), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -60787,9 +63037,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1304), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1433), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -60803,8 +63051,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_RBRACK, - ACTIONS(1300), 19, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -60824,18 +63071,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2666] = 7, + [2579] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - STATE(540), 1, + STATE(557), 1, sym_text_interpolation, - STATE(550), 1, + STATE(573), 1, sym_arguments, - ACTIONS(1292), 20, + ACTIONS(1353), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -60856,7 +63103,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1290), 35, + ACTIONS(1351), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -60892,35 +63139,177 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2741] = 14, + [2654] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1431), 1, + anon_sym_EQ, + STATE(558), 1, + sym_text_interpolation, + ACTIONS(1375), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1433), 13, + anon_sym_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(1367), 16, + anon_sym_SEMI, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RPAREN, + aux_sym_binary_expression_token1, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1373), 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, + [2733] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(785), 1, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1443), 1, + anon_sym_LPAREN, + STATE(559), 1, + sym_text_interpolation, + STATE(570), 1, + sym_arguments, + ACTIONS(1445), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1377), 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(1367), 15, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1276), 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(1373), 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, + [2816] = 14, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1358), 1, + ACTIONS(1435), 1, anon_sym_EQ, - ACTIONS(1382), 1, - anon_sym_RPAREN, - STATE(517), 1, + ACTIONS(1453), 1, + anon_sym_COMMA, + ACTIONS(1456), 1, + anon_sym_RBRACK, + STATE(532), 1, sym_arguments, - STATE(541), 1, + STATE(560), 1, sym_text_interpolation, - STATE(1571), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1302), 2, + STATE(1702), 1, + aux_sym__array_destructing_repeat1, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1294), 12, + ACTIONS(1367), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -60933,7 +63322,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1360), 13, + ACTIONS(1437), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -60947,7 +63336,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1300), 19, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -60967,18 +63356,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [2830] = 7, + [2905] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - STATE(542), 1, + STATE(561), 1, sym_text_interpolation, - STATE(552), 1, + STATE(568), 1, sym_arguments, - ACTIONS(1274), 20, + ACTIONS(1347), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -60999,7 +63388,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1272), 35, + ACTIONS(1345), 35, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61035,97 +63424,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [2905] = 37, + [2980] = 37, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(212), 1, - aux_sym_arrow_function_token1, - ACTIONS(216), 1, + 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, anon_sym_array, - ACTIONS(236), 1, - aux_sym_throw_expression_token1, - ACTIONS(260), 1, - anon_sym_clone, - ACTIONS(262), 1, - anon_sym_print, - ACTIONS(264), 1, + ACTIONS(566), 1, anon_sym_new, - ACTIONS(268), 1, + ACTIONS(570), 1, sym_shell_command_expression, - ACTIONS(278), 1, + ACTIONS(578), 1, anon_sym_DOLLAR, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(623), 1, - sym_name, - ACTIONS(625), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(627), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1254), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(596), 1, + aux_sym_arrow_function_token1, + ACTIONS(602), 1, + aux_sym_throw_expression_token1, + ACTIONS(610), 1, + anon_sym_clone, + ACTIONS(612), 1, + anon_sym_print, + ACTIONS(1329), 1, anon_sym_LBRACK, - ACTIONS(1384), 1, + ACTIONS(1439), 1, anon_sym_LPAREN, - STATE(543), 1, + STATE(562), 1, sym_text_interpolation, - STATE(653), 1, + STATE(603), 1, sym__reserved_identifier, - STATE(672), 1, + STATE(608), 1, sym_qualified_name, - STATE(714), 1, + STATE(664), 1, sym_class_constant_access_expression, - STATE(899), 1, + STATE(747), 1, sym_exponentiation_expression, - STATE(1299), 1, + STATE(1298), 1, sym_namespace_name_as_prefix, - STATE(1301), 1, + STATE(1344), 1, sym__dereferencable_expression, - STATE(1897), 1, + STATE(1919), 1, sym_relative_scope, - STATE(1898), 1, - sym__scope_resolution_qualifier, - STATE(1904), 1, - sym_static_modifier, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - ACTIONS(266), 2, + STATE(2019), 1, + sym_static_modifier, + STATE(2042), 1, + sym__scope_resolution_qualifier, + ACTIONS(568), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(274), 2, + ACTIONS(574), 2, anon_sym_self, anon_sym_parent, - ACTIONS(276), 2, + ACTIONS(576), 2, sym_heredoc, sym_string, - STATE(900), 2, + STATE(838), 2, sym_clone_expression, sym__primary_expression, - STATE(657), 3, + STATE(611), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - ACTIONS(224), 4, + ACTIONS(550), 4, sym_float, sym_integer, sym_boolean, sym_null, - STATE(666), 4, + STATE(623), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(845), 6, + STATE(743), 6, sym_arrow_function, sym_throw_expression, sym_print_intrinsic, sym_anonymous_function_creation_expression, sym_object_creation_expression, sym_update_expression, - STATE(638), 7, + STATE(598), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -61133,18 +63522,88 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [3040] = 7, + [3115] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(544), 1, - sym_text_interpolation, - STATE(549), 1, + ACTIONS(1435), 1, + anon_sym_EQ, + ACTIONS(1453), 1, + anon_sym_COMMA, + ACTIONS(1459), 1, + anon_sym_RBRACK, + STATE(532), 1, sym_arguments, - ACTIONS(1280), 20, + STATE(563), 1, + sym_text_interpolation, + STATE(1616), 1, + aux_sym__array_destructing_repeat1, + ACTIONS(1375), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1367), 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(1437), 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(1373), 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, + [3203] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(564), 1, + sym_text_interpolation, + ACTIONS(1385), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61165,12 +63624,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1278), 35, + ACTIONS(1383), 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, @@ -61201,14 +63661,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3115] = 5, + [3273] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(545), 1, + STATE(565), 1, sym_text_interpolation, - ACTIONS(1270), 20, + ACTIONS(1343), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61229,7 +63689,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1268), 36, + ACTIONS(1341), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61266,14 +63726,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3185] = 5, + [3343] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(546), 1, + STATE(566), 1, sym_text_interpolation, - ACTIONS(1316), 20, + ACTIONS(1417), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61294,7 +63754,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1314), 36, + ACTIONS(1415), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61331,14 +63791,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3255] = 5, + [3413] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(547), 1, + STATE(567), 1, sym_text_interpolation, - ACTIONS(1348), 20, + ACTIONS(1409), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61359,7 +63819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1346), 36, + ACTIONS(1407), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61396,14 +63856,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3325] = 5, + [3483] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(548), 1, + STATE(568), 1, sym_text_interpolation, - ACTIONS(1308), 20, + ACTIONS(1389), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61424,7 +63884,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1306), 36, + ACTIONS(1387), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61461,14 +63921,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3395] = 5, + [3553] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(549), 1, + STATE(569), 1, sym_text_interpolation, - ACTIONS(1328), 20, + ACTIONS(1397), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61489,7 +63949,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1326), 36, + ACTIONS(1395), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61526,14 +63986,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3465] = 5, + [3623] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(550), 1, + STATE(570), 1, sym_text_interpolation, - ACTIONS(1332), 20, + ACTIONS(1381), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61554,7 +64014,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1330), 36, + ACTIONS(1379), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61591,14 +64051,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3535] = 5, + [3693] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(551), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1431), 1, + anon_sym_EQ, + STATE(532), 1, + sym_arguments, + STATE(571), 1, sym_text_interpolation, - ACTIONS(1356), 20, + ACTIONS(1375), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1462), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1367), 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(1433), 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(1373), 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, + [3777] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(572), 1, + sym_text_interpolation, + ACTIONS(1401), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61619,7 +64151,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1354), 36, + ACTIONS(1399), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61656,14 +64188,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3605] = 5, + [3847] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(552), 1, + STATE(573), 1, sym_text_interpolation, - ACTIONS(1340), 20, + ACTIONS(1393), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61684,7 +64216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1338), 36, + ACTIONS(1391), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61721,14 +64253,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3675] = 5, + [3917] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(553), 1, + STATE(574), 1, sym_text_interpolation, - ACTIONS(1344), 20, + ACTIONS(1425), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61749,7 +64281,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1342), 36, + ACTIONS(1423), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61786,25 +64318,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3745] = 9, + [3987] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1362), 1, - anon_sym_EQ, - STATE(554), 1, + STATE(575), 1, sym_text_interpolation, - ACTIONS(1302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1339), 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(1337), 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(1364), 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -61818,12 +64369,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1294), 16, - anon_sym_SEMI, + 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, + [4057] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1431), 1, + anon_sym_EQ, + STATE(532), 1, + sym_arguments, + STATE(576), 1, + sym_text_interpolation, + ACTIONS(1375), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1464), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1367), 12, anon_sym_EQ_GT, - anon_sym_RBRACK, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -61835,7 +64421,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1300), 19, + ACTIONS(1433), 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(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -61855,14 +64455,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [3823] = 5, + [4141] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(555), 1, + STATE(577), 1, sym_text_interpolation, - ACTIONS(1324), 20, + ACTIONS(1413), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61883,7 +64483,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1322), 36, + ACTIONS(1411), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61920,14 +64520,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3893] = 5, + [4211] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(556), 1, + STATE(578), 1, sym_text_interpolation, - ACTIONS(1336), 20, + ACTIONS(1335), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -61948,7 +64548,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1334), 36, + ACTIONS(1333), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -61985,29 +64585,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [3963] = 11, + [4281] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + STATE(579), 1, + sym_text_interpolation, + ACTIONS(1421), 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(1419), 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, + [4351] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1386), 1, + ACTIONS(1466), 1, anon_sym_EQ, - STATE(517), 1, + STATE(532), 1, sym_arguments, - STATE(557), 1, + STATE(580), 1, sym_text_interpolation, - ACTIONS(1302), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1388), 13, + ACTIONS(1468), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62021,7 +64686,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1294), 14, + ACTIONS(1367), 14, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -62036,7 +64701,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1300), 19, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -62056,14 +64721,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4045] = 5, + [4433] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(558), 1, + STATE(581), 1, sym_text_interpolation, - ACTIONS(1320), 20, + ACTIONS(1429), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62084,7 +64749,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1318), 36, + ACTIONS(1427), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -62121,14 +64786,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4115] = 5, + [4503] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(559), 1, + STATE(582), 1, sym_text_interpolation, - ACTIONS(1352), 20, + ACTIONS(1405), 20, anon_sym_EQ, anon_sym_AMP, anon_sym_QMARK, @@ -62149,7 +64814,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1350), 36, + ACTIONS(1403), 36, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -62186,45 +64851,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4185] = 12, + [4573] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - ACTIONS(1358), 1, + ACTIONS(1435), 1, anon_sym_EQ, - STATE(517), 1, - sym_arguments, - STATE(560), 1, + STATE(583), 1, sym_text_interpolation, - ACTIONS(1302), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1390), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1294), 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(1360), 13, + ACTIONS(1437), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62238,7 +64883,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1300), 19, + ACTIONS(1367), 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(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -62258,35 +64920,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4269] = 14, + [4651] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - ACTIONS(1362), 1, - anon_sym_EQ, - ACTIONS(1368), 1, + ACTIONS(772), 1, anon_sym_COMMA, - ACTIONS(1392), 1, - anon_sym_RBRACK, - STATE(517), 1, - sym_arguments, - STATE(561), 1, + ACTIONS(1431), 1, + anon_sym_EQ, + ACTIONS(1451), 1, + anon_sym_RPAREN, + STATE(584), 1, sym_text_interpolation, - STATE(1524), 1, - aux_sym__array_destructing_repeat1, - ACTIONS(1302), 2, + STATE(1683), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1294), 11, + ACTIONS(1367), 12, + anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -62298,7 +64957,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1364), 13, + ACTIONS(1433), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62312,7 +64971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1300), 19, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -62332,44 +64991,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4357] = 5, + [4734] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(562), 1, - sym_text_interpolation, - ACTIONS(1262), 20, + ACTIONS(1369), 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(1260), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + STATE(585), 1, + sym_text_interpolation, + ACTIONS(1445), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1377), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62383,9 +65023,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, + ACTIONS(1367), 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, @@ -62397,15 +65039,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4427] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(563), 1, - sym_text_interpolation, - ACTIONS(1266), 20, - anon_sym_EQ, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -62425,16 +65059,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1264), 36, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + [4811] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1441), 1, + anon_sym_EQ, + STATE(586), 1, + sym_text_interpolation, + ACTIONS(1445), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1447), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62448,9 +65091,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, + ACTIONS(1367), 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, @@ -62462,15 +65107,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [4497] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(564), 1, - sym_text_interpolation, - ACTIONS(1312), 20, - anon_sym_EQ, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -62490,69 +65127,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1310), 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, - [4567] = 12, + [4888] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - ACTIONS(1358), 1, + ACTIONS(1369), 1, anon_sym_EQ, - STATE(517), 1, - sym_arguments, - STATE(565), 1, + STATE(587), 1, sym_text_interpolation, - ACTIONS(1302), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1294), 12, + ACTIONS(1367), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -62565,7 +65158,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1360), 13, + ACTIONS(1377), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62579,7 +65174,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1300), 19, + anon_sym_RBRACK, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -62599,31 +65195,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4651] = 12, + [4965] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(785), 1, - anon_sym_COMMA, - ACTIONS(1358), 1, + ACTIONS(1435), 1, anon_sym_EQ, - ACTIONS(1382), 1, - anon_sym_RPAREN, - STATE(566), 1, + ACTIONS(1453), 1, + anon_sym_COMMA, + ACTIONS(1456), 1, + anon_sym_RBRACK, + STATE(588), 1, sym_text_interpolation, - STATE(1571), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1302), 2, + STATE(1702), 1, + aux_sym__array_destructing_repeat1, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1294), 12, + ACTIONS(1367), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -62636,7 +65232,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1360), 13, + ACTIONS(1437), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62650,7 +65246,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1300), 19, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -62670,31 +65266,121 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4734] = 12, + [5048] = 35, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + 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(548), 1, + anon_sym_array, + ACTIONS(566), 1, + anon_sym_new, + ACTIONS(570), 1, + sym_shell_command_expression, + ACTIONS(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, + sym_comment, + ACTIONS(642), 1, + aux_sym_arrow_function_token1, + ACTIONS(648), 1, + aux_sym_throw_expression_token1, + ACTIONS(658), 1, + anon_sym_print, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_LPAREN, + STATE(589), 1, + sym_text_interpolation, + STATE(603), 1, + sym__reserved_identifier, + STATE(608), 1, + sym_qualified_name, + STATE(664), 1, + sym_class_constant_access_expression, + STATE(755), 1, + sym__primary_expression, + STATE(1298), 1, + sym_namespace_name_as_prefix, + STATE(1344), 1, + sym__dereferencable_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(2042), 1, + sym__scope_resolution_qualifier, + STATE(2044), 1, + sym_static_modifier, + ACTIONS(568), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(574), 2, + anon_sym_self, + anon_sym_parent, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + STATE(611), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + ACTIONS(550), 4, + sym_float, + sym_integer, + sym_boolean, + sym_null, + STATE(623), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(743), 6, + sym_arrow_function, + sym_throw_expression, + sym_print_intrinsic, + sym_anonymous_function_creation_expression, + sym_object_creation_expression, + sym_update_expression, + STATE(598), 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, + [5176] = 10, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(1431), 1, anon_sym_EQ, - ACTIONS(1368), 1, - anon_sym_COMMA, - ACTIONS(1371), 1, - anon_sym_RBRACK, - STATE(567), 1, + STATE(590), 1, sym_text_interpolation, - STATE(1448), 1, - aux_sym__array_destructing_repeat1, - ACTIONS(1302), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1464), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1294), 12, + ACTIONS(1367), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -62707,7 +65393,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1364), 13, + ACTIONS(1433), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62721,7 +65407,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1300), 19, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -62741,110 +65427,214 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [4817] = 9, + [5254] = 35, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + 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(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, sym_comment, - ACTIONS(1296), 1, - anon_sym_EQ, - STATE(568), 1, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1439), 1, + anon_sym_LPAREN, + STATE(591), 1, sym_text_interpolation, - ACTIONS(1302), 2, + STATE(603), 1, + sym__reserved_identifier, + STATE(608), 1, + sym_qualified_name, + STATE(664), 1, + sym_class_constant_access_expression, + STATE(755), 1, + sym__primary_expression, + STATE(1298), 1, + sym_namespace_name_as_prefix, + STATE(1344), 1, + sym__dereferencable_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1970), 1, + sym_static_modifier, + STATE(2042), 1, + sym__scope_resolution_qualifier, + ACTIONS(568), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, + ACTIONS(574), 2, + anon_sym_self, + anon_sym_parent, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + STATE(611), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + ACTIONS(550), 4, + sym_float, + sym_integer, + sym_boolean, + sym_null, + STATE(623), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(743), 6, + sym_arrow_function, + sym_throw_expression, + sym_print_intrinsic, + sym_anonymous_function_creation_expression, + sym_object_creation_expression, + sym_update_expression, + STATE(598), 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, + [5382] = 35, + 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(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(592), 1, + sym_comment, + ACTIONS(628), 1, + sym_name, + ACTIONS(630), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(632), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1331), 1, anon_sym_LBRACK, - ACTIONS(1294), 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(1304), 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(1300), 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, - [4894] = 9, + ACTIONS(1449), 1, + anon_sym_LPAREN, + STATE(592), 1, + sym_text_interpolation, + STATE(677), 1, + sym_qualified_name, + STATE(688), 1, + sym__reserved_identifier, + STATE(736), 1, + sym_class_constant_access_expression, + STATE(929), 1, + sym__primary_expression, + STATE(1311), 1, + sym_namespace_name_as_prefix, + STATE(1318), 1, + sym__dereferencable_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1954), 1, + sym_static_modifier, + STATE(1957), 1, + sym_namespace_name, + STATE(1998), 1, + sym__scope_resolution_qualifier, + 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(672), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + ACTIONS(225), 4, + sym_float, + sym_integer, + sym_boolean, + sym_null, + STATE(705), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(893), 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, + [5510] = 10, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1296), 1, + ACTIONS(1431), 1, anon_sym_EQ, - STATE(569), 1, + STATE(593), 1, sym_text_interpolation, - ACTIONS(1376), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1462), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1304), 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(1294), 15, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(1367), 12, anon_sym_EQ_GT, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, @@ -62857,45 +65647,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1300), 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(5), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_EQ, - STATE(570), 1, - sym_text_interpolation, - ACTIONS(1376), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1380), 13, + ACTIONS(1433), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62909,23 +65661,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1294), 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(1300), 19, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -62945,31 +65681,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [5048] = 12, + [5588] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(1435), 1, anon_sym_EQ, - ACTIONS(1368), 1, + ACTIONS(1453), 1, anon_sym_COMMA, - ACTIONS(1392), 1, + ACTIONS(1459), 1, anon_sym_RBRACK, - STATE(571), 1, + STATE(594), 1, sym_text_interpolation, - STATE(1524), 1, + STATE(1616), 1, aux_sym__array_destructing_repeat1, - ACTIONS(1302), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1294), 11, + ACTIONS(1367), 11, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -62981,7 +65717,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1364), 13, + ACTIONS(1437), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -62995,7 +65731,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1300), 19, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -63015,41 +65751,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [5130] = 10, + [5670] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1358), 1, + ACTIONS(1466), 1, anon_sym_EQ, - STATE(572), 1, + STATE(595), 1, sym_text_interpolation, - ACTIONS(1302), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1395), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1294), 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(1360), 13, + ACTIONS(1468), 13, anon_sym_STAR_STAR_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -63063,49 +65783,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1300), 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, - [5208] = 10, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1358), 1, - anon_sym_EQ, - STATE(573), 1, - sym_text_interpolation, - ACTIONS(1302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1390), 2, + ACTIONS(1367), 14, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1294), 12, anon_sym_EQ_GT, + anon_sym_RPAREN, aux_sym_binary_expression_token1, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, @@ -63117,21 +65798,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1360), 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(1300), 19, + ACTIONS(1373), 19, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -63151,92 +65818,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [5286] = 35, + [5746] = 35, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(525), 1, + ACTIONS(528), 1, sym_name, - ACTIONS(529), 1, + ACTIONS(532), 1, aux_sym_function_static_declaration_token1, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(533), 1, + ACTIONS(536), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(545), 1, + ACTIONS(548), 1, anon_sym_array, - ACTIONS(563), 1, + ACTIONS(566), 1, anon_sym_new, - ACTIONS(567), 1, + ACTIONS(570), 1, sym_shell_command_expression, - ACTIONS(575), 1, + ACTIONS(578), 1, anon_sym_DOLLAR, - ACTIONS(637), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(596), 1, aux_sym_arrow_function_token1, - ACTIONS(643), 1, + ACTIONS(602), 1, aux_sym_throw_expression_token1, - ACTIONS(653), 1, + ACTIONS(612), 1, anon_sym_print, - ACTIONS(1252), 1, + ACTIONS(1329), 1, anon_sym_LBRACK, - ACTIONS(1374), 1, + ACTIONS(1439), 1, anon_sym_LPAREN, - STATE(574), 1, + STATE(596), 1, sym_text_interpolation, - STATE(584), 1, + STATE(603), 1, sym__reserved_identifier, - STATE(601), 1, + STATE(608), 1, sym_qualified_name, - STATE(639), 1, + STATE(664), 1, sym_class_constant_access_expression, - STATE(748), 1, + STATE(755), 1, sym__primary_expression, - STATE(1284), 1, + STATE(1298), 1, sym_namespace_name_as_prefix, - STATE(1286), 1, + STATE(1344), 1, sym__dereferencable_expression, - STATE(1897), 1, + STATE(1919), 1, sym_relative_scope, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - STATE(1920), 1, + STATE(2019), 1, sym_static_modifier, - STATE(1928), 1, + STATE(2042), 1, sym__scope_resolution_qualifier, - ACTIONS(565), 2, + ACTIONS(568), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(571), 2, + ACTIONS(574), 2, anon_sym_self, anon_sym_parent, - ACTIONS(573), 2, + ACTIONS(576), 2, sym_heredoc, sym_string, - STATE(608), 3, + STATE(611), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - ACTIONS(547), 4, + ACTIONS(550), 4, sym_float, sym_integer, sym_boolean, sym_null, - STATE(596), 4, + STATE(623), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(747), 6, + STATE(743), 6, sym_arrow_function, sym_throw_expression, sym_print_intrinsic, sym_anonymous_function_creation_expression, sym_object_creation_expression, sym_update_expression, - STATE(581), 7, + STATE(598), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -63244,368 +65911,91 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [5414] = 35, + [5874] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(196), 1, + ACTIONS(1472), 1, anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(529), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(533), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(563), 1, - anon_sym_new, - ACTIONS(567), 1, - sym_shell_command_expression, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(591), 1, - aux_sym_arrow_function_token1, - ACTIONS(597), 1, - aux_sym_throw_expression_token1, - ACTIONS(607), 1, - anon_sym_print, - ACTIONS(1252), 1, + STATE(597), 1, + sym_text_interpolation, + STATE(1764), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1475), 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(1470), 34, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, + anon_sym_RBRACE, + aux_sym_class_interface_clause_token1, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1374), 1, + anon_sym_RBRACK, + anon_sym_DOLLAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [5940] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(575), 1, + STATE(532), 1, + sym_arguments, + STATE(598), 1, sym_text_interpolation, - STATE(584), 1, - sym__reserved_identifier, - STATE(601), 1, - sym_qualified_name, - STATE(639), 1, - sym_class_constant_access_expression, - STATE(748), 1, - sym__primary_expression, - STATE(1284), 1, - sym_namespace_name_as_prefix, - STATE(1286), 1, - sym__dereferencable_expression, - STATE(1895), 1, - sym_static_modifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - STATE(1928), 1, - sym__scope_resolution_qualifier, - ACTIONS(565), 2, + ACTIONS(1375), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(571), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - STATE(608), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - ACTIONS(547), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(596), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(747), 6, - sym_arrow_function, - sym_throw_expression, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_expression, - STATE(581), 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, - [5542] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1386), 1, - anon_sym_EQ, - STATE(576), 1, - sym_text_interpolation, - ACTIONS(1302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1388), 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(1294), 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(1300), 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, - [5618] = 35, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(529), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(533), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(539), 1, - aux_sym_arrow_function_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(549), 1, - aux_sym_throw_expression_token1, - ACTIONS(561), 1, - anon_sym_print, - ACTIONS(563), 1, - anon_sym_new, - ACTIONS(567), 1, - sym_shell_command_expression, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1374), 1, - anon_sym_LPAREN, - STATE(577), 1, - sym_text_interpolation, - STATE(584), 1, - sym__reserved_identifier, - STATE(601), 1, - sym_qualified_name, - STATE(639), 1, - sym_class_constant_access_expression, - STATE(748), 1, - sym__primary_expression, - STATE(1284), 1, - sym_namespace_name_as_prefix, - STATE(1286), 1, - sym__dereferencable_expression, - STATE(1848), 1, - sym_static_modifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - STATE(1928), 1, - sym__scope_resolution_qualifier, - ACTIONS(565), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(571), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - STATE(608), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - ACTIONS(547), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(596), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(747), 6, - sym_arrow_function, - sym_throw_expression, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_expression, - STATE(581), 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, - [5746] = 35, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(212), 1, - aux_sym_arrow_function_token1, - ACTIONS(216), 1, - anon_sym_array, - ACTIONS(236), 1, - aux_sym_throw_expression_token1, - ACTIONS(262), 1, - anon_sym_print, - ACTIONS(264), 1, - anon_sym_new, - ACTIONS(268), 1, - sym_shell_command_expression, - ACTIONS(278), 1, - anon_sym_DOLLAR, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(623), 1, - sym_name, - ACTIONS(625), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(627), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1254), 1, - anon_sym_LBRACK, - ACTIONS(1384), 1, - anon_sym_LPAREN, - STATE(578), 1, - sym_text_interpolation, - STATE(653), 1, - sym__reserved_identifier, - STATE(672), 1, - sym_qualified_name, - STATE(714), 1, - sym_class_constant_access_expression, - STATE(862), 1, - sym__primary_expression, - STATE(1299), 1, - sym_namespace_name_as_prefix, - STATE(1301), 1, - sym__dereferencable_expression, - STATE(1897), 1, - sym_relative_scope, - STATE(1898), 1, - sym__scope_resolution_qualifier, - STATE(1904), 1, - sym_static_modifier, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(266), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(274), 2, - anon_sym_self, - anon_sym_parent, - ACTIONS(276), 2, - sym_heredoc, - sym_string, - STATE(657), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - ACTIONS(224), 4, - sym_float, - sym_integer, - sym_boolean, - sym_null, - STATE(666), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(845), 6, - sym_arrow_function, - sym_throw_expression, - sym_print_intrinsic, - sym_anonymous_function_creation_expression, - sym_object_creation_expression, - sym_update_expression, - STATE(638), 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, - [5874] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1399), 1, - anon_sym_BSLASH, - STATE(579), 1, - sym_text_interpolation, - STATE(1764), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1402), 12, + ACTIONS(1373), 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, @@ -63614,24 +66004,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1397), 34, + ACTIONS(1367), 25, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, - anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_class_interface_clause_token1, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOLLAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -63649,24 +66030,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [5940] = 8, + [6009] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(517), 1, + STATE(532), 1, sym_arguments, - STATE(580), 1, + STATE(599), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1296), 13, + ACTIONS(1369), 13, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -63680,7 +66061,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1304), 27, + ACTIONS(1377), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -63708,32 +66089,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6007] = 9, + [6076] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - STATE(517), 1, - sym_arguments, - STATE(581), 1, - sym_text_interpolation, - ACTIONS(1302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1298), 5, - anon_sym_LBRACE, + ACTIONS(1477), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1479), 1, + aux_sym_arrow_function_token1, + ACTIONS(1481), 1, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1300), 13, + STATE(600), 1, + sym_text_interpolation, + ACTIONS(1425), 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, @@ -63742,14 +66115,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 25, + ACTIONS(1423), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -63768,14 +66147,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6076] = 5, + [6142] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(582), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(533), 1, + sym_arguments, + STATE(601), 1, sym_text_interpolation, - ACTIONS(1406), 12, + ACTIONS(1485), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -63788,15 +66171,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1404), 34, + ACTIONS(1483), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_class_interface_clause_token1, + aux_sym_use_instead_of_clause_token1, anon_sym_EQ_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -63805,7 +66187,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, @@ -63823,18 +66204,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6136] = 7, + [6206] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - STATE(524), 1, - sym_arguments, - STATE(583), 1, + STATE(602), 1, sym_text_interpolation, - ACTIONS(1410), 12, + ACTIONS(1489), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -63847,14 +66224,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1408), 32, + ACTIONS(1487), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_use_instead_of_clause_token1, + aux_sym_class_interface_clause_token1, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, @@ -63863,6 +66241,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, @@ -63880,14 +66259,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6200] = 5, + [6266] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(584), 1, + STATE(603), 1, sym_text_interpolation, - ACTIONS(1402), 12, + ACTIONS(1475), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -63900,7 +66279,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1397), 34, + ACTIONS(1470), 34, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -63935,20 +66314,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6260] = 8, + [6326] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1412), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1414), 1, - aux_sym_arrow_function_token1, - ACTIONS(1416), 1, - anon_sym_COLON_COLON, - STATE(585), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + STATE(604), 1, sym_text_interpolation, - ACTIONS(1336), 12, + STATE(650), 1, + sym_arguments, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1369), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -63961,20 +66344,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1334), 31, + ACTIONS(1377), 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_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -63993,18 +66371,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6326] = 7, + [6391] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(519), 1, + STATE(532), 1, sym_arguments, - STATE(586), 1, + STATE(605), 1, sym_text_interpolation, - ACTIONS(1280), 12, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1495), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64017,20 +66401,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1278), 31, + ACTIONS(1493), 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, @@ -64049,18 +66428,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6389] = 7, + [6456] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(522), 1, + STATE(542), 1, sym_arguments, - STATE(587), 1, + STATE(606), 1, sym_text_interpolation, - ACTIONS(1274), 12, + ACTIONS(1361), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64073,7 +66452,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1272), 31, + ACTIONS(1359), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -64105,18 +66484,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6452] = 7, + [6519] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(588), 1, - sym_text_interpolation, - STATE(624), 1, + STATE(544), 1, sym_arguments, - ACTIONS(1280), 12, + STATE(607), 1, + sym_text_interpolation, + ACTIONS(1357), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64129,7 +66508,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1278), 31, + ACTIONS(1355), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -64161,24 +66540,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6515] = 8, + [6582] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(589), 1, - sym_text_interpolation, - STATE(614), 1, + STATE(532), 1, sym_arguments, - ACTIONS(1298), 5, + STATE(608), 1, + sym_text_interpolation, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1422), 12, + ACTIONS(1373), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64191,7 +66570,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1420), 26, + ACTIONS(1367), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -64218,16 +66597,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6580] = 6, + [6647] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(526), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(535), 1, sym_arguments, - STATE(590), 1, + STATE(609), 1, sym_text_interpolation, - ACTIONS(1284), 12, + ACTIONS(1353), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64240,14 +66621,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1282), 32, + ACTIONS(1351), 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, @@ -64273,24 +66653,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6641] = 8, + [6710] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(591), 1, - sym_text_interpolation, - STATE(630), 1, + STATE(534), 1, sym_arguments, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1426), 12, + STATE(610), 1, + sym_text_interpolation, + ACTIONS(1347), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64303,15 +66677,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1424), 26, + ACTIONS(1345), 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, @@ -64330,25 +66709,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6706] = 6, + [6773] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(592), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(532), 1, + sym_arguments, + STATE(611), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1296), 13, + ACTIONS(1373), 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, @@ -64357,16 +66739,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1304), 27, + 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, + 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, @@ -64385,19 +66766,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6767] = 7, + [6838] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1433), 1, - anon_sym_EQ, - STATE(593), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + STATE(612), 1, sym_text_interpolation, - ACTIONS(1430), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1435), 12, + STATE(636), 1, + sym_arguments, + ACTIONS(1347), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64410,13 +66790,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1428), 30, + ACTIONS(1345), 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, @@ -64424,6 +66804,7 @@ 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, @@ -64441,16 +66822,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6830] = 6, + [6901] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(519), 1, - sym_arguments, - STATE(594), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + STATE(613), 1, sym_text_interpolation, - ACTIONS(1280), 12, + STATE(631), 1, + sym_arguments, + ACTIONS(1361), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64463,14 +66846,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1278), 32, + ACTIONS(1359), 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, @@ -64496,24 +66878,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6891] = 8, + [6964] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(595), 1, - sym_text_interpolation, - STATE(630), 1, + STATE(532), 1, sym_arguments, - ACTIONS(1298), 5, + STATE(614), 1, + sym_text_interpolation, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1296), 12, + ACTIONS(1495), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64526,7 +66908,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1304), 26, + ACTIONS(1493), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -64553,28 +66935,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [6956] = 7, + [7029] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(596), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + STATE(615), 1, sym_text_interpolation, - ACTIONS(1302), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1298), 5, + STATE(647), 1, + sym_arguments, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1300), 13, + ACTIONS(1499), 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, @@ -64583,13 +66965,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 25, + ACTIONS(1497), 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, @@ -64609,18 +66992,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7019] = 7, + [7094] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1491), 1, anon_sym_LPAREN, - STATE(597), 1, + STATE(616), 1, sym_text_interpolation, - STATE(637), 1, + STATE(643), 1, sym_arguments, - ACTIONS(1292), 12, + ACTIONS(1357), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64633,7 +67016,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1290), 31, + ACTIONS(1355), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -64665,18 +67048,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7082] = 7, + [7157] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(526), 1, + STATE(533), 1, sym_arguments, - STATE(598), 1, + STATE(617), 1, sym_text_interpolation, - ACTIONS(1284), 12, + ACTIONS(1365), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64689,7 +67072,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1282), 31, + ACTIONS(1363), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -64721,18 +67104,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7145] = 7, + [7220] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1491), 1, anon_sym_LPAREN, - STATE(599), 1, + STATE(618), 1, sym_text_interpolation, - STATE(625), 1, + STATE(632), 1, sym_arguments, - ACTIONS(1284), 12, + ACTIONS(1365), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64745,7 +67128,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1282), 31, + ACTIONS(1363), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -64777,18 +67160,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7208] = 7, + [7283] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN, - STATE(600), 1, - sym_text_interpolation, - STATE(613), 1, + STATE(535), 1, sym_arguments, - ACTIONS(1274), 12, + STATE(619), 1, + sym_text_interpolation, + ACTIONS(1353), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64801,13 +67182,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1272), 31, + ACTIONS(1351), 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, @@ -64833,24 +67215,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7271] = 8, + [7344] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - STATE(517), 1, + STATE(534), 1, sym_arguments, - STATE(601), 1, + STATE(620), 1, sym_text_interpolation, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1300), 12, + ACTIONS(1347), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64863,15 +67237,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 26, + ACTIONS(1345), 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, @@ -64890,24 +67270,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7336] = 8, + [7405] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1491), 1, anon_sym_LPAREN, - STATE(517), 1, - sym_arguments, - STATE(602), 1, + STATE(621), 1, sym_text_interpolation, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1439), 12, + STATE(633), 1, + sym_arguments, + ACTIONS(1353), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64920,15 +67294,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1437), 26, + ACTIONS(1351), 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, @@ -64947,24 +67326,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7401] = 8, + [7468] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1441), 1, - anon_sym_LPAREN, - STATE(603), 1, - sym_text_interpolation, - STATE(743), 1, + STATE(533), 1, sym_arguments, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1422), 12, + STATE(622), 1, + sym_text_interpolation, + ACTIONS(1365), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -64977,15 +67348,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1420), 26, + ACTIONS(1363), 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, @@ -65004,22 +67381,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7466] = 7, + [7529] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN, - STATE(604), 1, + STATE(623), 1, sym_text_interpolation, - STATE(632), 1, - sym_arguments, - ACTIONS(1288), 12, + ACTIONS(1375), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1373), 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, @@ -65028,20 +67411,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1286), 31, + ACTIONS(1367), 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_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, @@ -65060,22 +67437,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7529] = 7, + [7592] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - STATE(524), 1, - sym_arguments, - STATE(605), 1, + STATE(624), 1, sym_text_interpolation, - ACTIONS(1288), 12, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1369), 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, @@ -65084,20 +67464,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1286), 31, + ACTIONS(1377), 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, @@ -65116,16 +67492,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7592] = 6, + [7653] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(522), 1, + STATE(544), 1, sym_arguments, - STATE(606), 1, + STATE(625), 1, sym_text_interpolation, - ACTIONS(1274), 12, + ACTIONS(1357), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65138,7 +67514,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1272), 32, + ACTIONS(1355), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65171,18 +67547,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7653] = 7, + [7714] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - STATE(520), 1, + STATE(542), 1, sym_arguments, - STATE(607), 1, + STATE(626), 1, sym_text_interpolation, - ACTIONS(1292), 12, + ACTIONS(1361), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65195,13 +67569,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1290), 31, + ACTIONS(1359), 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, @@ -65227,24 +67602,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7716] = 8, + [7775] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - STATE(517), 1, - sym_arguments, - STATE(608), 1, + ACTIONS(1506), 1, + anon_sym_EQ, + STATE(627), 1, sym_text_interpolation, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1300), 12, + ACTIONS(1503), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1508), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65257,16 +67627,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 26, + ACTIONS(1501), 30, anon_sym_SEMI, - anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_RBRACK, + 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, @@ -65284,16 +67658,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7781] = 6, + [7838] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(520), 1, - sym_arguments, - STATE(609), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + STATE(628), 1, sym_text_interpolation, - ACTIONS(1292), 12, + STATE(650), 1, + sym_arguments, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1512), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65306,21 +67688,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1290), 32, + ACTIONS(1510), 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, @@ -65339,24 +67715,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7842] = 8, + [7903] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1514), 1, anon_sym_LPAREN, - STATE(517), 1, - sym_arguments, - STATE(610), 1, + STATE(629), 1, sym_text_interpolation, - ACTIONS(1298), 5, + STATE(740), 1, + sym_arguments, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1439), 12, + ACTIONS(1499), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65369,7 +67745,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1437), 26, + ACTIONS(1497), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65396,24 +67772,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7907] = 8, + [7968] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1491), 1, anon_sym_LPAREN, - STATE(611), 1, + STATE(630), 1, sym_text_interpolation, - STATE(614), 1, + STATE(647), 1, sym_arguments, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1422), 12, + ACTIONS(1499), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65426,7 +67802,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1420), 26, + ACTIONS(1497), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65453,16 +67829,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [7972] = 6, + [8033] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(524), 1, - sym_arguments, - STATE(612), 1, + STATE(631), 1, sym_text_interpolation, - ACTIONS(1288), 12, + ACTIONS(1421), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65475,7 +67849,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1286), 32, + ACTIONS(1419), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65508,14 +67882,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8033] = 5, + [8091] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(613), 1, + STATE(632), 1, sym_text_interpolation, - ACTIONS(1340), 12, + ACTIONS(1385), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65528,7 +67902,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1338), 32, + ACTIONS(1383), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65561,21 +67935,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8091] = 6, + [8149] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(614), 1, + STATE(633), 1, sym_text_interpolation, - ACTIONS(1318), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1445), 12, + ACTIONS(1393), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65588,15 +67955,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1443), 26, + ACTIONS(1391), 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, @@ -65615,14 +67988,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8151] = 5, + [8207] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(615), 1, + STATE(634), 1, sym_text_interpolation, - ACTIONS(1449), 12, + ACTIONS(1518), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65635,7 +68008,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1447), 32, + ACTIONS(1516), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65668,14 +68041,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8209] = 5, + [8265] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(616), 1, + STATE(635), 1, sym_text_interpolation, - ACTIONS(1312), 12, + ACTIONS(1522), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65688,7 +68061,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1310), 32, + ACTIONS(1520), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65721,14 +68094,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8267] = 5, + [8323] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(617), 1, + STATE(636), 1, sym_text_interpolation, - ACTIONS(1344), 12, + ACTIONS(1389), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65741,7 +68114,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1342), 32, + ACTIONS(1387), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65774,14 +68147,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8325] = 5, + [8381] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(618), 1, + STATE(637), 1, sym_text_interpolation, - ACTIONS(1270), 12, + ACTIONS(1409), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65794,7 +68167,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1268), 32, + ACTIONS(1407), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65827,14 +68200,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8383] = 5, + [8439] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(619), 1, + STATE(638), 1, sym_text_interpolation, - ACTIONS(1324), 12, + ACTIONS(1417), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65847,7 +68220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1322), 32, + ACTIONS(1415), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65880,14 +68253,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8441] = 5, + [8497] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(620), 1, + STATE(639), 1, sym_text_interpolation, - ACTIONS(1256), 12, + ACTIONS(1425), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65900,7 +68273,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1258), 32, + ACTIONS(1423), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65933,14 +68306,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8499] = 5, + [8555] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(621), 1, + STATE(640), 1, sym_text_interpolation, - ACTIONS(1435), 12, + ACTIONS(1397), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -65953,7 +68326,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1428), 32, + ACTIONS(1395), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -65986,16 +68359,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8557] = 6, + [8613] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1416), 1, + ACTIONS(1481), 1, anon_sym_COLON_COLON, - STATE(622), 1, + STATE(641), 1, sym_text_interpolation, - ACTIONS(1336), 12, + ACTIONS(1425), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66008,7 +68381,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1334), 31, + ACTIONS(1423), 31, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66040,14 +68413,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8617] = 5, + [8673] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(623), 1, + STATE(642), 1, sym_text_interpolation, - ACTIONS(1453), 12, + ACTIONS(1405), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66060,7 +68433,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1451), 32, + ACTIONS(1403), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66093,14 +68466,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8675] = 5, + [8731] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(624), 1, + STATE(643), 1, sym_text_interpolation, - ACTIONS(1328), 12, + ACTIONS(1429), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66113,7 +68486,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1326), 32, + ACTIONS(1427), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66146,14 +68519,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8733] = 5, + [8789] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(625), 1, + STATE(644), 1, sym_text_interpolation, - ACTIONS(1356), 12, + ACTIONS(1401), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66166,7 +68539,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1354), 32, + ACTIONS(1399), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66199,14 +68572,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8791] = 5, + [8847] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(626), 1, + STATE(645), 1, sym_text_interpolation, - ACTIONS(1316), 12, + ACTIONS(1343), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66219,7 +68592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1314), 32, + ACTIONS(1341), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66252,14 +68625,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8849] = 5, + [8905] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(627), 1, + STATE(646), 1, sym_text_interpolation, - ACTIONS(1266), 12, + ACTIONS(1526), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66272,7 +68645,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1264), 32, + ACTIONS(1524), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66305,14 +68678,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8907] = 5, + [8963] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(628), 1, + STATE(647), 1, sym_text_interpolation, - ACTIONS(1262), 12, + ACTIONS(1379), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1530), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66325,21 +68705,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1260), 32, + ACTIONS(1528), 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, @@ -66358,14 +68732,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [8965] = 5, + [9023] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(629), 1, + STATE(648), 1, sym_text_interpolation, - ACTIONS(1336), 12, + ACTIONS(1335), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66378,7 +68752,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1334), 32, + ACTIONS(1333), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66411,14 +68785,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9023] = 5, + [9081] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(630), 1, + STATE(649), 1, sym_text_interpolation, - ACTIONS(1320), 12, + ACTIONS(1534), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66431,7 +68805,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1318), 32, + ACTIONS(1532), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66464,14 +68838,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9081] = 5, + [9139] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(631), 1, + STATE(650), 1, sym_text_interpolation, - ACTIONS(1352), 12, + ACTIONS(1381), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66484,7 +68858,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1350), 32, + ACTIONS(1379), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66517,14 +68891,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9139] = 5, + [9197] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(632), 1, + STATE(651), 1, sym_text_interpolation, - ACTIONS(1348), 12, + ACTIONS(1413), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66537,7 +68911,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1346), 32, + ACTIONS(1411), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66570,14 +68944,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9197] = 5, + [9255] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(633), 1, + STATE(652), 1, sym_text_interpolation, - ACTIONS(1457), 12, + ACTIONS(1508), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66590,7 +68964,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1455), 32, + ACTIONS(1501), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66623,14 +68997,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9255] = 5, + [9313] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(634), 1, + STATE(653), 1, sym_text_interpolation, - ACTIONS(1461), 12, + ACTIONS(1339), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66643,7 +69017,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1459), 32, + ACTIONS(1337), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66676,14 +69050,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9313] = 5, + [9371] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(635), 1, + STATE(654), 1, sym_text_interpolation, - ACTIONS(1308), 12, + ACTIONS(1325), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66696,7 +69070,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1306), 32, + ACTIONS(1327), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66729,14 +69103,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9371] = 5, + [9429] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(636), 1, + STATE(655), 1, sym_text_interpolation, - ACTIONS(1465), 12, + ACTIONS(1538), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66749,7 +69123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1463), 32, + ACTIONS(1536), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66782,19 +69156,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9429] = 5, + [9487] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(637), 1, + STATE(656), 1, sym_text_interpolation, - ACTIONS(1332), 12, + ACTIONS(904), 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, @@ -66802,22 +69175,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1330), 32, + ACTIONS(902), 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_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, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [9544] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1479), 1, + aux_sym_arrow_function_token1, + ACTIONS(1481), 1, anon_sym_COLON_COLON, + ACTIONS(1540), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1542), 1, + anon_sym_DOLLAR, + STATE(657), 1, + sym_text_interpolation, + STATE(1460), 1, + sym_variable_name, + STATE(1461), 1, + sym_static_variable_declaration, + ACTIONS(1425), 11, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1423), 26, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -66835,27 +69266,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9487] = 9, + [9613] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - STATE(558), 1, + STATE(570), 1, sym_arguments, - STATE(638), 1, + STATE(658), 1, sym_text_interpolation, - ACTIONS(1376), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1300), 12, + ACTIONS(1369), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66868,12 +69296,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 22, + ACTIONS(1377), 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, @@ -66891,24 +69321,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9552] = 6, + [9676] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(639), 1, + ACTIONS(1503), 1, + anon_sym_RPAREN, + ACTIONS(1506), 1, + anon_sym_EQ, + STATE(659), 1, sym_text_interpolation, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1300), 12, + ACTIONS(1508), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_COLON, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -66917,15 +69344,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 26, + ACTIONS(1501), 30, 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_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, @@ -66944,20 +69375,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9611] = 6, + [9737] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(640), 1, + STATE(660), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1439), 12, + ACTIONS(1495), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -66970,7 +69401,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1437), 26, + ACTIONS(1493), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -66997,18 +69428,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9670] = 5, + [9796] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(641), 1, + STATE(661), 1, sym_text_interpolation, - ACTIONS(906), 11, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1369), 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, @@ -67016,20 +69454,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(904), 32, + ACTIONS(1377), 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, @@ -67049,18 +69481,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9727] = 7, + [9855] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1399), 1, + ACTIONS(1472), 1, anon_sym_BSLASH, - STATE(642), 1, + STATE(662), 1, sym_text_interpolation, STATE(1764), 1, aux_sym_namespace_name_repeat1, - ACTIONS(1402), 11, + ACTIONS(1475), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67072,7 +69504,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1397), 30, + ACTIONS(1470), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -67103,14 +69535,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9788] = 5, + [9916] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(643), 1, + STATE(663), 1, sym_text_interpolation, - ACTIONS(918), 11, + ACTIONS(900), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67122,7 +69554,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(916), 32, + ACTIONS(898), 32, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -67155,79 +69587,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9845] = 11, + [9973] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1414), 1, - aux_sym_arrow_function_token1, - ACTIONS(1416), 1, - anon_sym_COLON_COLON, - ACTIONS(1467), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(1469), 1, - anon_sym_DOLLAR, - STATE(644), 1, + STATE(664), 1, sym_text_interpolation, - STATE(1323), 1, - sym_static_variable_declaration, - STATE(1325), 1, - sym_variable_name, - ACTIONS(1336), 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(1334), 26, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1371), 5, anon_sym_LBRACE, - 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, - [9914] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1430), 1, - anon_sym_RPAREN, - ACTIONS(1433), 1, - anon_sym_EQ, - STATE(645), 1, - sym_text_interpolation, - ACTIONS(1435), 11, + ACTIONS(1373), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_COLON, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -67236,19 +69613,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1428), 30, + ACTIONS(1367), 26, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, + aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -67267,20 +69640,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [9975] = 6, + [10032] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(646), 1, + STATE(665), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1426), 12, + ACTIONS(1512), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67293,7 +69666,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1424), 26, + ACTIONS(1510), 26, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -67320,26 +69693,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10034] = 11, + [10091] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1414), 1, + ACTIONS(1479), 1, aux_sym_arrow_function_token1, - ACTIONS(1416), 1, + ACTIONS(1481), 1, anon_sym_COLON_COLON, - ACTIONS(1467), 1, + ACTIONS(1540), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1469), 1, + ACTIONS(1542), 1, anon_sym_DOLLAR, - STATE(647), 1, + STATE(666), 1, sym_text_interpolation, - STATE(1325), 1, - sym_variable_name, - STATE(1329), 1, + STATE(1393), 1, sym_static_variable_declaration, - ACTIONS(1336), 11, + STATE(1460), 1, + sym_variable_name, + ACTIONS(1425), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67351,7 +69724,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1334), 26, + ACTIONS(1423), 26, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, @@ -67378,24 +69751,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10103] = 8, + [10160] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - STATE(558), 1, + STATE(570), 1, sym_arguments, - STATE(648), 1, + STATE(667), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1445), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1296), 12, + ACTIONS(1373), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67408,14 +69784,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1304), 24, + ACTIONS(1367), 22, 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, @@ -67433,24 +69807,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10166] = 6, + [10225] = 29, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, sym_comment, - STATE(649), 1, + ACTIONS(1542), 1, + anon_sym_DOLLAR, + ACTIONS(1544), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(1546), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(1548), 1, + sym_var_modifier, + ACTIONS(1550), 1, + anon_sym_QMARK, + STATE(603), 1, + sym__reserved_identifier, + STATE(668), 1, sym_text_interpolation, - ACTIONS(1298), 5, - anon_sym_LBRACE, + STATE(1027), 1, + aux_sym_property_declaration_repeat1, + STATE(1106), 1, + sym__modifier, + STATE(1241), 1, + sym_qualified_name, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1323), 1, + sym_variable_name, + STATE(1329), 1, + sym_union_type, + STATE(1355), 1, + sym__types, + STATE(1457), 1, + sym__function_definition_header, + STATE(1481), 1, + sym_property_element, + STATE(1546), 1, + sym__type, + STATE(1957), 1, + sym_namespace_name, + ACTIONS(209), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + ACTIONS(1554), 2, + anon_sym_self, + anon_sym_parent, + STATE(1245), 2, + sym_optional_type, + sym_primitive_type, + ACTIONS(211), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1105), 3, + sym_class_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(1552), 10, + 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_false, + anon_sym_null, + [10329] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1479), 1, + aux_sym_arrow_function_token1, + ACTIONS(1481), 1, anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1296), 12, + ACTIONS(1540), 1, + aux_sym_namespace_use_declaration_token2, + STATE(669), 1, + sym_text_interpolation, + ACTIONS(1425), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_COLON, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -67459,16 +69907,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1304), 26, + ACTIONS(1423), 28, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_RBRACK, + 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, @@ -67486,71 +69936,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10225] = 29, + [10391] = 29, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(525), 1, + ACTIONS(528), 1, sym_name, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(1469), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1542), 1, anon_sym_DOLLAR, - ACTIONS(1471), 1, + ACTIONS(1544), 1, aux_sym_function_static_declaration_token1, - ACTIONS(1473), 1, + ACTIONS(1546), 1, aux_sym_namespace_use_declaration_token2, - ACTIONS(1475), 1, + ACTIONS(1548), 1, sym_var_modifier, - ACTIONS(1477), 1, + ACTIONS(1550), 1, anon_sym_QMARK, - STATE(584), 1, + STATE(603), 1, sym__reserved_identifier, - STATE(650), 1, + STATE(670), 1, sym_text_interpolation, - STATE(987), 1, + STATE(1027), 1, aux_sym_property_declaration_repeat1, - STATE(1068), 1, + STATE(1106), 1, sym__modifier, - STATE(1225), 1, + STATE(1241), 1, sym_qualified_name, - STATE(1242), 1, - sym_union_type, - STATE(1269), 1, + STATE(1303), 1, sym_namespace_name_as_prefix, - STATE(1296), 1, + STATE(1323), 1, sym_variable_name, - STATE(1298), 1, + STATE(1329), 1, + sym_union_type, + STATE(1355), 1, sym__types, - STATE(1318), 1, + STATE(1477), 1, sym_property_element, - STATE(1319), 1, + STATE(1482), 1, sym__function_definition_header, - STATE(1580), 1, + STATE(1488), 1, sym__type, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - ACTIONS(208), 2, + ACTIONS(209), 2, aux_sym_class_modifier_token1, aux_sym_class_modifier_token2, - ACTIONS(1481), 2, + ACTIONS(1554), 2, anon_sym_self, anon_sym_parent, - STATE(1226), 2, + STATE(1245), 2, sym_optional_type, sym_primitive_type, - ACTIONS(210), 3, + ACTIONS(211), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1069), 3, + STATE(1105), 3, sym_class_modifier, sym_static_modifier, sym_visibility_modifier, - ACTIONS(1479), 10, + ACTIONS(1552), 10, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -67561,20 +70011,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_false, anon_sym_null, - [10329] = 8, + [10495] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1414), 1, - aux_sym_arrow_function_token1, - ACTIONS(1416), 1, - anon_sym_COLON_COLON, - ACTIONS(1467), 1, - aux_sym_namespace_use_declaration_token2, - STATE(651), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(542), 1, + sym_arguments, + STATE(671), 1, sym_text_interpolation, - ACTIONS(1336), 11, + ACTIONS(1361), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67586,15 +70034,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1334), 28, + ACTIONS(1359), 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, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, @@ -67615,18 +70063,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10391] = 7, + [10554] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - STATE(524), 1, + STATE(570), 1, sym_arguments, - STATE(652), 1, + STATE(672), 1, sym_text_interpolation, - ACTIONS(1288), 11, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1373), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67638,18 +70092,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1286), 28, + ACTIONS(1367), 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, @@ -67667,14 +70116,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10450] = 5, + [10615] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(653), 1, + STATE(533), 1, + sym_arguments, + STATE(673), 1, sym_text_interpolation, - ACTIONS(1402), 11, + ACTIONS(1365), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67686,11 +70137,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1397), 30, + ACTIONS(1363), 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, @@ -67717,20 +70167,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10505] = 8, + [10672] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_BSLASH, - ACTIONS(1483), 1, - anon_sym_COLON, - STATE(654), 1, + STATE(542), 1, + sym_arguments, + STATE(674), 1, sym_text_interpolation, - STATE(1764), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1402), 11, + ACTIONS(1361), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67742,10 +70188,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1397), 27, + ACTIONS(1359), 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, @@ -67770,24 +70218,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10566] = 8, + [10729] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - STATE(517), 1, + STATE(544), 1, sym_arguments, - STATE(655), 1, + STATE(675), 1, sym_text_interpolation, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1439), 11, + ACTIONS(1357), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67799,13 +70239,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1437), 23, + ACTIONS(1355), 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, @@ -67823,18 +70269,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10627] = 5, + [10786] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(656), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(532), 1, + sym_arguments, + STATE(676), 1, sym_text_interpolation, - ACTIONS(926), 11, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1495), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -67842,20 +70298,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(924), 30, + ACTIONS(1493), 23, + 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, @@ -67873,24 +70322,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10682] = 8, + [10847] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - STATE(558), 1, + STATE(570), 1, sym_arguments, - STATE(657), 1, + STATE(677), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1300), 11, + ACTIONS(1373), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67902,7 +70351,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 23, + ACTIONS(1367), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -67926,16 +70375,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10743] = 6, + [10908] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(520), 1, - sym_arguments, - STATE(658), 1, + ACTIONS(1472), 1, + anon_sym_BSLASH, + ACTIONS(1556), 1, + anon_sym_COLON, + STATE(678), 1, sym_text_interpolation, - ACTIONS(1292), 11, + STATE(1764), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1475), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67947,13 +70400,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1290), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1470), 27, 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, @@ -67977,16 +70428,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10800] = 6, + [10969] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(524), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(679), 1, + sym_text_interpolation, + STATE(711), 1, sym_arguments, - STATE(659), 1, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1369), 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(1377), 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, + [11030] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(680), 1, sym_text_interpolation, - ACTIONS(1288), 11, + STATE(717), 1, + sym_arguments, + ACTIONS(1347), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -67998,13 +70504,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1286), 29, + ACTIONS(1345), 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, @@ -68028,18 +70533,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10857] = 7, + [11089] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(519), 1, - sym_arguments, - STATE(660), 1, + STATE(681), 1, sym_text_interpolation, - ACTIONS(1280), 11, + STATE(716), 1, + sym_arguments, + ACTIONS(1353), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68051,7 +70556,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1278), 28, + ACTIONS(1351), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -68080,16 +70585,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10916] = 6, + [11148] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1433), 1, - anon_sym_EQ, - STATE(661), 1, + ACTIONS(1472), 1, + anon_sym_BSLASH, + ACTIONS(1560), 1, + anon_sym_COLON, + STATE(682), 1, sym_text_interpolation, - ACTIONS(1435), 11, + STATE(1764), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1475), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68101,12 +70610,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1428), 29, + ACTIONS(1470), 27, 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, @@ -68131,24 +70638,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [10973] = 8, + [11209] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_LPAREN, - STATE(662), 1, - sym_text_interpolation, - STATE(701), 1, + STATE(535), 1, sym_arguments, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1422), 11, + STATE(683), 1, + sym_text_interpolation, + ACTIONS(1353), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68160,13 +70659,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1420), 23, + ACTIONS(1351), 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, @@ -68184,28 +70689,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11034] = 8, + [11266] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_LPAREN, - STATE(663), 1, - sym_text_interpolation, - STATE(688), 1, + STATE(534), 1, sym_arguments, - ACTIONS(1298), 5, + STATE(684), 1, + sym_text_interpolation, + ACTIONS(1347), 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(1345), 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(1296), 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, + [11323] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(685), 1, + sym_text_interpolation, + ACTIONS(965), 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, @@ -68213,13 +70759,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1304), 23, - sym__automatic_semicolon, + ACTIONS(963), 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, @@ -68237,24 +70790,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11095] = 8, + [11378] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(664), 1, - sym_text_interpolation, - STATE(688), 1, + STATE(532), 1, sym_arguments, - ACTIONS(1298), 5, + STATE(686), 1, + sym_text_interpolation, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1426), 11, + ACTIONS(1495), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68266,7 +70819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1424), 23, + ACTIONS(1493), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -68290,18 +70843,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11156] = 5, + [11439] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(665), 1, + ACTIONS(1472), 1, + anon_sym_BSLASH, + ACTIONS(1562), 1, + anon_sym_COLON, + STATE(687), 1, sym_text_interpolation, - ACTIONS(930), 11, + STATE(1764), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1475), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - aux_sym_else_clause_token1, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT, @@ -68309,20 +70868,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(928), 30, + ACTIONS(1470), 27, + 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_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, - anon_sym_RBRACK, + 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, @@ -68340,27 +70896,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11211] = 7, + [11500] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(666), 1, + STATE(688), 1, sym_text_interpolation, - ACTIONS(1376), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1300), 12, + ACTIONS(1475), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -68369,12 +70915,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 22, + ACTIONS(1470), 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, @@ -68392,18 +70946,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11270] = 7, + [11555] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - STATE(526), 1, + STATE(564), 1, sym_arguments, - STATE(667), 1, + STATE(689), 1, sym_text_interpolation, - ACTIONS(1284), 11, + ACTIONS(1485), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68415,7 +70969,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1282), 28, + ACTIONS(1483), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -68444,14 +70998,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11329] = 5, + [11614] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(668), 1, + STATE(690), 1, sym_text_interpolation, - ACTIONS(1406), 11, + ACTIONS(1425), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68463,7 +71017,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1404), 30, + ACTIONS(1423), 30, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -68494,24 +71048,121 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11384] = 8, + [11669] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_LPAREN, - STATE(669), 1, + STATE(691), 1, sym_text_interpolation, - STATE(701), 1, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1369), 12, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1377), 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, + [11726] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(533), 1, sym_arguments, - ACTIONS(1298), 5, + STATE(692), 1, + sym_text_interpolation, + ACTIONS(1365), 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(1363), 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(1422), 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, + [11785] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(544), 1, + sym_arguments, + STATE(693), 1, + sym_text_interpolation, + ACTIONS(1357), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68523,13 +71174,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1420), 23, + ACTIONS(1355), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -68547,18 +71203,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11445] = 7, + [11844] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(522), 1, + STATE(535), 1, sym_arguments, - STATE(670), 1, + STATE(694), 1, sym_text_interpolation, - ACTIONS(1274), 11, + ACTIONS(1353), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68570,7 +71226,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1272), 28, + ACTIONS(1351), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -68599,20 +71255,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11504] = 8, + [11903] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_BSLASH, - ACTIONS(1487), 1, - anon_sym_COLON, - STATE(671), 1, + STATE(695), 1, sym_text_interpolation, - STATE(1764), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1402), 11, + ACTIONS(1489), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68624,11 +71274,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1397), 27, + ACTIONS(1487), 30, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_STAR_STAR, anon_sym_COLON_COLON, @@ -68652,24 +71305,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11565] = 8, + [11958] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(558), 1, + STATE(534), 1, sym_arguments, - STATE(672), 1, + STATE(696), 1, sym_text_interpolation, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1300), 11, + ACTIONS(1347), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68681,13 +71328,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 23, + ACTIONS(1345), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -68705,18 +71357,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11626] = 7, + [12017] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_LPAREN, - STATE(673), 1, + ACTIONS(1506), 1, + anon_sym_EQ, + STATE(697), 1, sym_text_interpolation, - STATE(694), 1, - sym_arguments, - ACTIONS(1284), 11, + ACTIONS(1508), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68728,12 +71378,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1282), 28, + ACTIONS(1501), 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, @@ -68757,18 +71408,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11685] = 7, + [12074] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(674), 1, + STATE(698), 1, sym_text_interpolation, - STATE(710), 1, + STATE(711), 1, sym_arguments, - ACTIONS(1280), 11, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1512), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68780,18 +71437,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1278), 28, + ACTIONS(1510), 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, @@ -68809,24 +71461,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11744] = 8, + [12135] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(517), 1, - sym_arguments, - STATE(675), 1, + STATE(699), 1, sym_text_interpolation, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1439), 11, + STATE(724), 1, + sym_arguments, + ACTIONS(1365), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68838,13 +71484,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1437), 23, + ACTIONS(1363), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -68862,18 +71513,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11805] = 7, + [12194] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(520), 1, - sym_arguments, - STATE(676), 1, + STATE(700), 1, sym_text_interpolation, - ACTIONS(1292), 11, + STATE(720), 1, + sym_arguments, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1499), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68885,18 +71542,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1290), 28, + ACTIONS(1497), 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, @@ -68914,14 +71566,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11864] = 5, + [12255] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(677), 1, + ACTIONS(1564), 1, + anon_sym_LPAREN, + STATE(701), 1, sym_text_interpolation, - ACTIONS(1336), 11, + STATE(905), 1, + sym_arguments, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1499), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68933,20 +71595,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1334), 30, + ACTIONS(1497), 23, 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, @@ -68964,20 +71619,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11919] = 8, + [12316] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_BSLASH, - ACTIONS(1489), 1, - anon_sym_COLON, - STATE(678), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(702), 1, sym_text_interpolation, - STATE(1764), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1402), 11, + STATE(720), 1, + sym_arguments, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1499), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -68989,17 +71648,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1397), 27, + ACTIONS(1497), 23, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + 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, @@ -69017,16 +71672,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [11980] = 6, + [12377] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(526), 1, - sym_arguments, - STATE(679), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(703), 1, sym_text_interpolation, - ACTIONS(1284), 11, + STATE(707), 1, + sym_arguments, + ACTIONS(1361), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69038,13 +71695,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1282), 29, + ACTIONS(1359), 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, @@ -69068,16 +71724,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12037] = 6, + [12436] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(522), 1, - sym_arguments, - STATE(680), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(704), 1, sym_text_interpolation, - ACTIONS(1274), 11, + STATE(726), 1, + sym_arguments, + ACTIONS(1357), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69089,13 +71747,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1272), 29, + ACTIONS(1355), 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, @@ -69119,21 +71776,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12094] = 7, + [12495] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_LPAREN, - STATE(681), 1, + STATE(705), 1, sym_text_interpolation, - STATE(704), 1, - sym_arguments, - ACTIONS(1274), 11, + ACTIONS(1445), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + ACTIONS(1373), 12, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -69142,18 +71805,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1272), 28, + ACTIONS(1367), 22, 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, @@ -69171,20 +71828,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12153] = 6, + [12554] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(519), 1, - sym_arguments, - STATE(682), 1, + STATE(706), 1, sym_text_interpolation, - ACTIONS(1280), 11, + ACTIONS(955), 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, @@ -69192,19 +71847,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1278), 29, - sym__automatic_semicolon, + ACTIONS(953), 30, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LBRACE, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, + anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -69222,18 +71878,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12210] = 7, + [12609] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_LPAREN, - STATE(683), 1, + STATE(707), 1, sym_text_interpolation, - STATE(698), 1, - sym_arguments, - ACTIONS(1292), 11, + ACTIONS(1421), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69245,12 +71897,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1290), 28, + ACTIONS(1419), 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, @@ -69274,18 +71927,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12269] = 7, + [12663] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_LPAREN, - STATE(684), 1, + STATE(708), 1, sym_text_interpolation, - STATE(706), 1, - sym_arguments, - ACTIONS(1288), 11, + ACTIONS(1335), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69297,12 +71946,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1286), 28, + ACTIONS(1333), 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, @@ -69326,24 +71976,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12328] = 6, + [12717] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(685), 1, + STATE(709), 1, sym_text_interpolation, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1296), 12, + ACTIONS(1409), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -69352,14 +71995,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1304), 24, + ACTIONS(1407), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + 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, @@ -69377,18 +72025,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12385] = 7, + [12771] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, - anon_sym_LPAREN, - STATE(547), 1, - sym_arguments, - STATE(686), 1, + STATE(710), 1, sym_text_interpolation, - ACTIONS(1410), 11, + ACTIONS(1339), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69400,12 +72044,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1408), 28, + ACTIONS(1337), 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, @@ -69429,24 +72074,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12444] = 8, + [12825] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1491), 1, - anon_sym_LPAREN, - STATE(687), 1, + STATE(711), 1, sym_text_interpolation, - STATE(879), 1, - sym_arguments, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - ACTIONS(1422), 11, + ACTIONS(1381), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69458,13 +72093,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1420), 23, + ACTIONS(1379), 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, @@ -69482,14 +72123,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12505] = 5, + [12879] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(688), 1, + STATE(712), 1, sym_text_interpolation, - ACTIONS(1320), 11, + ACTIONS(1538), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69501,7 +72142,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1318), 29, + ACTIONS(1536), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -69531,16 +72172,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12559] = 6, + [12933] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1433), 1, - anon_sym_EQ, - STATE(689), 1, + STATE(713), 1, sym_text_interpolation, - ACTIONS(1435), 11, + ACTIONS(1405), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69552,12 +72191,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1428), 28, + ACTIONS(1403), 29, + 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, @@ -69581,14 +72221,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12615] = 5, + [12987] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(690), 1, + STATE(714), 1, sym_text_interpolation, - ACTIONS(1344), 11, + ACTIONS(1325), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69600,7 +72240,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1342), 29, + ACTIONS(1327), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -69630,14 +72270,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12669] = 5, + [13041] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(691), 1, + STATE(715), 1, sym_text_interpolation, - ACTIONS(1352), 11, + ACTIONS(1508), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69649,7 +72289,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1350), 29, + ACTIONS(1501), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -69679,14 +72319,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12723] = 5, + [13095] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(692), 1, + STATE(716), 1, sym_text_interpolation, - ACTIONS(1270), 11, + ACTIONS(1393), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69698,7 +72338,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1268), 29, + ACTIONS(1391), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -69728,260 +72368,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [12777] = 5, + [13149] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(693), 1, - sym_text_interpolation, - ACTIONS(1312), 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(1310), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12831] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(694), 1, - sym_text_interpolation, - ACTIONS(1356), 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(1354), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12885] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(695), 1, - sym_text_interpolation, - ACTIONS(1435), 11, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1428), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12939] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(696), 1, - sym_text_interpolation, - ACTIONS(1449), 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(1447), 29, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [12993] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1416), 1, - anon_sym_COLON_COLON, - STATE(697), 1, - sym_text_interpolation, - ACTIONS(1336), 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(1334), 28, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [13049] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(698), 1, + STATE(717), 1, sym_text_interpolation, - ACTIONS(1332), 11, + ACTIONS(1389), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -69993,7 +72387,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1330), 29, + ACTIONS(1387), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70023,14 +72417,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13103] = 5, + [13203] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(699), 1, + STATE(718), 1, sym_text_interpolation, - ACTIONS(1262), 11, + ACTIONS(1518), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70042,7 +72436,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1260), 29, + ACTIONS(1516), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70072,14 +72466,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13157] = 5, + [13257] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(700), 1, + STATE(719), 1, sym_text_interpolation, - ACTIONS(1308), 11, + ACTIONS(1526), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70091,7 +72485,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1306), 29, + ACTIONS(1524), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70121,21 +72515,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13211] = 6, + [13311] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(701), 1, + STATE(720), 1, sym_text_interpolation, - ACTIONS(1318), 6, + ACTIONS(1379), 6, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1445), 11, + ACTIONS(1530), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70147,7 +72541,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1443), 23, + ACTIONS(1528), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70171,14 +72565,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13267] = 5, + [13367] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(702), 1, + STATE(721), 1, sym_text_interpolation, - ACTIONS(1465), 11, + ACTIONS(1417), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70190,7 +72584,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1463), 29, + ACTIONS(1415), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70220,14 +72614,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13321] = 5, + [13421] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(703), 1, + STATE(722), 1, sym_text_interpolation, - ACTIONS(1324), 11, + ACTIONS(1401), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70239,7 +72633,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1322), 29, + ACTIONS(1399), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70269,14 +72663,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13375] = 5, + [13475] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(704), 1, + STATE(723), 1, sym_text_interpolation, - ACTIONS(1340), 11, + ACTIONS(1343), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70288,7 +72682,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1338), 29, + ACTIONS(1341), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70318,14 +72712,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13429] = 5, + [13529] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(705), 1, + STATE(724), 1, sym_text_interpolation, - ACTIONS(1256), 11, + ACTIONS(1385), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70337,7 +72731,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1258), 29, + ACTIONS(1383), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70367,14 +72761,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13483] = 5, + [13583] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(706), 1, + STATE(725), 1, sym_text_interpolation, - ACTIONS(1348), 11, + ACTIONS(1413), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70386,7 +72780,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1346), 29, + ACTIONS(1411), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70416,14 +72810,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13537] = 5, + [13637] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(707), 1, + STATE(726), 1, sym_text_interpolation, - ACTIONS(1316), 11, + ACTIONS(1429), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70435,7 +72829,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1314), 29, + ACTIONS(1427), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70465,14 +72859,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13591] = 5, + [13691] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(708), 1, + STATE(727), 1, sym_text_interpolation, - ACTIONS(1453), 11, + ACTIONS(1397), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70484,7 +72878,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1451), 29, + ACTIONS(1395), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70514,19 +72908,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13645] = 7, + [13745] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1433), 1, + ACTIONS(1506), 1, anon_sym_EQ, - STATE(709), 1, + STATE(728), 1, sym_text_interpolation, - ACTIONS(1493), 2, + ACTIONS(1566), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1435), 11, + ACTIONS(1508), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70538,7 +72932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1428), 26, + ACTIONS(1501), 26, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_LPAREN, @@ -70565,14 +72959,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13703] = 5, + [13803] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(710), 1, + ACTIONS(1506), 1, + anon_sym_EQ, + STATE(729), 1, sym_text_interpolation, - ACTIONS(1328), 11, + ACTIONS(1508), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70584,13 +72980,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1326), 29, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1501), 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, @@ -70614,14 +73009,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13757] = 5, + [13859] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(711), 1, + STATE(730), 1, sym_text_interpolation, - ACTIONS(1266), 11, + ACTIONS(1522), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70633,7 +73028,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1264), 29, + ACTIONS(1520), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70663,14 +73058,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13811] = 5, + [13913] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(712), 1, + ACTIONS(1481), 1, + anon_sym_COLON_COLON, + STATE(731), 1, sym_text_interpolation, - ACTIONS(1461), 11, + ACTIONS(1425), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70682,7 +73079,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1459), 29, + ACTIONS(1423), 28, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70691,7 +73088,6 @@ 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, @@ -70712,14 +73108,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13865] = 5, + [13969] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(713), 1, + STATE(732), 1, sym_text_interpolation, - ACTIONS(1457), 11, + ACTIONS(1534), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70731,7 +73127,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1455), 29, + ACTIONS(1532), 29, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70761,20 +73157,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13919] = 6, + [14023] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(714), 1, + STATE(733), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1300), 11, + ACTIONS(1369), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70786,7 +73182,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 23, + ACTIONS(1377), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70810,20 +73206,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [13974] = 6, + [14078] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(715), 1, + STATE(734), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1439), 11, + ACTIONS(1512), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70835,7 +73231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1437), 23, + ACTIONS(1510), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70859,20 +73255,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14029] = 6, + [14133] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(716), 1, + STATE(735), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1296), 11, + ACTIONS(1495), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70884,7 +73280,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1304), 23, + ACTIONS(1493), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70908,20 +73304,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14084] = 6, + [14188] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(717), 1, + STATE(736), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - ACTIONS(1426), 11, + ACTIONS(1373), 11, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -70933,7 +73329,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1424), 23, + ACTIONS(1367), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -70957,63 +73353,110 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14139] = 25, + [14243] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(196), 1, + STATE(737), 1, + sym_text_interpolation, + ACTIONS(1570), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1568), 28, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + anon_sym_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, + [14295] = 25, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(545), 1, + ACTIONS(548), 1, anon_sym_array, - ACTIONS(575), 1, + ACTIONS(578), 1, anon_sym_DOLLAR, - ACTIONS(1252), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1329), 1, anon_sym_LBRACK, - ACTIONS(1495), 1, + ACTIONS(1572), 1, sym_name, - ACTIONS(1497), 1, + ACTIONS(1574), 1, anon_sym_RBRACE, - ACTIONS(1499), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(603), 1, sym__reserved_identifier, - STATE(718), 1, - sym_text_interpolation, STATE(738), 1, + sym_text_interpolation, + STATE(760), 1, aux_sym_use_list_repeat1, - STATE(1171), 1, + STATE(1211), 1, sym_class_constant_access_expression, - STATE(1178), 1, + STATE(1221), 1, sym_qualified_name, - STATE(1266), 1, - sym__dereferencable_expression, - STATE(1269), 1, + STATE(1303), 1, sym_namespace_name_as_prefix, - STATE(1863), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, + STATE(1310), 1, + sym__dereferencable_expression, + STATE(1919), 1, sym_relative_scope, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - ACTIONS(573), 2, + STATE(1985), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, sym_heredoc, sym_string, - STATE(1752), 2, + STATE(1860), 2, sym_use_instead_of_clause, sym_use_as_clause, - ACTIONS(571), 3, + ACTIONS(574), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1261), 4, + STATE(1335), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1168), 10, + STATE(1215), 10, sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, @@ -71024,14 +73467,14 @@ static uint16_t ts_small_parse_table[] = { sym__string, sym_dynamic_variable_name, sym_variable_name, - [14231] = 5, + [14387] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(719), 1, + STATE(739), 1, sym_text_interpolation, - ACTIONS(1503), 10, + ACTIONS(1580), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71042,7 +73485,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1501), 28, + ACTIONS(1578), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71071,14 +73514,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14283] = 5, + [14439] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(720), 1, + STATE(740), 1, sym_text_interpolation, - ACTIONS(1507), 10, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71089,7 +73532,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1505), 28, + ACTIONS(1528), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71118,14 +73561,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14335] = 5, + [14491] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(721), 1, + STATE(741), 1, sym_text_interpolation, - ACTIONS(1511), 10, + ACTIONS(1584), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71136,7 +73579,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1509), 28, + ACTIONS(1582), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71165,14 +73608,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14387] = 5, + [14543] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(722), 1, + STATE(742), 1, sym_text_interpolation, - ACTIONS(1515), 10, + ACTIONS(1588), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71183,7 +73626,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1513), 28, + ACTIONS(1586), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71212,14 +73655,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14439] = 5, + [14595] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(723), 1, + STATE(743), 1, sym_text_interpolation, - ACTIONS(1519), 10, + ACTIONS(1373), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71230,7 +73673,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1517), 28, + ACTIONS(1367), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71259,14 +73702,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14491] = 5, + [14647] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(724), 1, + STATE(744), 1, sym_text_interpolation, - ACTIONS(1523), 10, + ACTIONS(1592), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71277,7 +73720,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1521), 28, + ACTIONS(1590), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71306,14 +73749,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14543] = 5, + [14699] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(725), 1, + STATE(745), 1, sym_text_interpolation, - ACTIONS(1527), 10, + ACTIONS(1596), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71324,7 +73767,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1525), 28, + ACTIONS(1594), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71353,14 +73796,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14595] = 5, + [14751] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(726), 1, + STATE(746), 1, sym_text_interpolation, - ACTIONS(1531), 10, + ACTIONS(1600), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71371,7 +73814,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1529), 28, + ACTIONS(1598), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71400,14 +73843,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14647] = 5, + [14803] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(727), 1, + STATE(747), 1, sym_text_interpolation, - ACTIONS(1535), 10, + ACTIONS(1604), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71418,7 +73861,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1533), 28, + ACTIONS(1602), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71447,14 +73890,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14699] = 5, + [14855] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(728), 1, + STATE(748), 1, sym_text_interpolation, - ACTIONS(1539), 10, + ACTIONS(1608), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71465,7 +73908,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1537), 28, + ACTIONS(1606), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71494,14 +73937,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14751] = 5, + [14907] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(729), 1, + STATE(749), 1, sym_text_interpolation, - ACTIONS(1543), 10, + ACTIONS(1512), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71512,7 +73955,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1541), 28, + ACTIONS(1510), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71541,14 +73984,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14803] = 5, + [14959] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(730), 1, + STATE(750), 1, sym_text_interpolation, - ACTIONS(1547), 10, + ACTIONS(1612), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71559,7 +74002,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1545), 28, + ACTIONS(1610), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71588,14 +74031,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14855] = 5, + [15011] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(731), 1, + STATE(751), 1, sym_text_interpolation, - ACTIONS(1551), 10, + ACTIONS(1616), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71606,7 +74049,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1549), 28, + ACTIONS(1614), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71635,14 +74078,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14907] = 5, + [15063] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(732), 1, + STATE(752), 1, sym_text_interpolation, - ACTIONS(1555), 10, + ACTIONS(1620), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71653,7 +74096,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1553), 28, + ACTIONS(1618), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71682,14 +74125,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [14959] = 5, + [15115] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(733), 1, + STATE(753), 1, sym_text_interpolation, - ACTIONS(1426), 10, + ACTIONS(1624), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71700,7 +74143,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1424), 28, + ACTIONS(1622), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71729,14 +74172,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15011] = 5, + [15167] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(734), 1, + STATE(754), 1, sym_text_interpolation, - ACTIONS(1559), 10, + ACTIONS(1628), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71747,7 +74190,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1557), 28, + ACTIONS(1626), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71776,14 +74219,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15063] = 5, + [15219] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(735), 1, + STATE(755), 1, sym_text_interpolation, - ACTIONS(1563), 10, + ACTIONS(1632), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71794,7 +74237,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1561), 28, + ACTIONS(1630), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71823,16 +74266,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15115] = 6, + [15271] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1569), 1, - aux_sym_binary_expression_token1, - STATE(736), 1, + STATE(756), 1, sym_text_interpolation, - ACTIONS(1567), 10, + ACTIONS(1636), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71843,7 +74284,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1565), 27, + ACTIONS(1634), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71855,6 +74296,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, @@ -71871,14 +74313,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15169] = 5, + [15323] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(737), 1, + STATE(757), 1, sym_text_interpolation, - ACTIONS(1573), 10, + ACTIONS(1640), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -71889,7 +74331,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1571), 28, + ACTIONS(1638), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -71918,81 +74360,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15221] = 25, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1495), 1, - sym_name, - ACTIONS(1499), 1, - anon_sym_LPAREN, - ACTIONS(1575), 1, - anon_sym_RBRACE, - STATE(584), 1, - sym__reserved_identifier, - STATE(738), 1, - sym_text_interpolation, - STATE(742), 1, - aux_sym_use_list_repeat1, - STATE(1171), 1, - sym_class_constant_access_expression, - STATE(1178), 1, - sym_qualified_name, - STATE(1266), 1, - sym__dereferencable_expression, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1863), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - STATE(1752), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(571), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1261), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1168), 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, - [15313] = 5, + [15375] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(739), 1, + STATE(758), 1, sym_text_interpolation, - ACTIONS(1262), 10, + ACTIONS(1644), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72003,7 +74378,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1260), 28, + ACTIONS(1642), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72032,14 +74407,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15365] = 5, + [15427] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(740), 1, + STATE(759), 1, sym_text_interpolation, - ACTIONS(1567), 10, + ACTIONS(1648), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72050,7 +74425,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1565), 28, + ACTIONS(1646), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72079,14 +74454,147 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15417] = 5, + [15479] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, sym_comment, - STATE(741), 1, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1572), 1, + sym_name, + ACTIONS(1576), 1, + anon_sym_LPAREN, + ACTIONS(1650), 1, + anon_sym_RBRACE, + STATE(603), 1, + sym__reserved_identifier, + STATE(760), 1, + sym_text_interpolation, + STATE(761), 1, + aux_sym_use_list_repeat1, + STATE(1211), 1, + sym_class_constant_access_expression, + STATE(1221), 1, + sym_qualified_name, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1310), 1, + sym__dereferencable_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1985), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + STATE(1860), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1335), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1215), 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, + [15571] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1652), 1, + sym_name, + ACTIONS(1658), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1661), 1, + anon_sym_BSLASH, + ACTIONS(1664), 1, + anon_sym_RBRACE, + ACTIONS(1666), 1, + anon_sym_LPAREN, + ACTIONS(1669), 1, + anon_sym_array, + ACTIONS(1672), 1, + anon_sym_LBRACK, + ACTIONS(1678), 1, + anon_sym_DOLLAR, + STATE(603), 1, + sym__reserved_identifier, + STATE(1211), 1, + sym_class_constant_access_expression, + STATE(1221), 1, + sym_qualified_name, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1310), 1, + sym__dereferencable_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1985), 1, + sym__scope_resolution_qualifier, + ACTIONS(1675), 2, + sym_heredoc, + sym_string, + STATE(761), 2, sym_text_interpolation, - ACTIONS(1579), 10, + aux_sym_use_list_repeat1, + STATE(1860), 2, + sym_use_instead_of_clause, + sym_use_as_clause, + ACTIONS(1655), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1335), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1215), 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, + [15661] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(762), 1, + sym_text_interpolation, + ACTIONS(1683), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72097,7 +74605,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1577), 28, + ACTIONS(1681), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72126,80 +74634,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15469] = 24, + [15713] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1581), 1, - sym_name, - ACTIONS(1587), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1590), 1, - anon_sym_BSLASH, - ACTIONS(1593), 1, - anon_sym_RBRACE, - ACTIONS(1595), 1, - anon_sym_LPAREN, - ACTIONS(1598), 1, - anon_sym_array, - ACTIONS(1601), 1, - anon_sym_LBRACK, - ACTIONS(1607), 1, - anon_sym_DOLLAR, - STATE(584), 1, - sym__reserved_identifier, - STATE(1171), 1, - sym_class_constant_access_expression, - STATE(1178), 1, - sym_qualified_name, - STATE(1266), 1, - sym__dereferencable_expression, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1863), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(1604), 2, - sym_heredoc, - sym_string, - STATE(742), 2, + STATE(763), 1, sym_text_interpolation, - aux_sym_use_list_repeat1, - STATE(1752), 2, - sym_use_instead_of_clause, - sym_use_as_clause, - ACTIONS(1584), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1261), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1168), 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, - [15559] = 5, + ACTIONS(1687), 10, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1685), 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, + [15765] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(743), 1, + ACTIONS(1693), 1, + aux_sym_binary_expression_token1, + STATE(764), 1, sym_text_interpolation, - ACTIONS(1445), 10, + ACTIONS(1691), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72210,7 +74701,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1443), 28, + ACTIONS(1689), 27, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72222,7 +74713,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, @@ -72239,14 +74729,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15611] = 5, + [15819] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(744), 1, + STATE(765), 1, sym_text_interpolation, - ACTIONS(1612), 10, + ACTIONS(1697), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72257,7 +74747,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 28, + ACTIONS(1695), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72286,14 +74776,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15663] = 5, + [15871] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(745), 1, + STATE(766), 1, sym_text_interpolation, - ACTIONS(1616), 10, + ACTIONS(1701), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72304,7 +74794,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1614), 28, + ACTIONS(1699), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72333,14 +74823,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15715] = 5, + [15923] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(746), 1, + STATE(767), 1, sym_text_interpolation, - ACTIONS(1620), 10, + ACTIONS(1705), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72351,7 +74841,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 28, + ACTIONS(1703), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72380,14 +74870,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15767] = 5, + [15975] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(747), 1, + STATE(768), 1, sym_text_interpolation, - ACTIONS(1300), 10, + ACTIONS(1691), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72398,7 +74888,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 28, + ACTIONS(1689), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72427,14 +74917,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15819] = 5, + [16027] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(748), 1, + STATE(769), 1, sym_text_interpolation, - ACTIONS(1624), 10, + ACTIONS(1709), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72445,7 +74935,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1622), 28, + ACTIONS(1707), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72474,14 +74964,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15871] = 5, + [16079] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(749), 1, + STATE(770), 1, sym_text_interpolation, - ACTIONS(1628), 10, + ACTIONS(1335), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72492,7 +74982,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1626), 28, + ACTIONS(1333), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72521,14 +75011,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15923] = 5, + [16131] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(750), 1, + STATE(771), 1, sym_text_interpolation, - ACTIONS(1632), 10, + ACTIONS(1495), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72539,7 +75029,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1630), 28, + ACTIONS(1493), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72568,14 +75058,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [15975] = 5, + [16183] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(751), 1, + STATE(772), 1, sym_text_interpolation, - ACTIONS(1636), 10, + ACTIONS(1339), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72586,7 +75076,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1634), 28, + ACTIONS(1337), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72615,14 +75105,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16027] = 5, + [16235] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(752), 1, + STATE(773), 1, sym_text_interpolation, - ACTIONS(1439), 10, + ACTIONS(1713), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72633,7 +75123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1437), 28, + ACTIONS(1711), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72662,14 +75152,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16079] = 5, + [16287] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(753), 1, + STATE(774), 1, sym_text_interpolation, - ACTIONS(1270), 10, + ACTIONS(1343), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -72680,7 +75170,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1268), 28, + ACTIONS(1341), 28, anon_sym_SEMI, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, @@ -72709,17 +75199,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16131] = 5, + [16339] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(754), 1, + STATE(775), 1, sym_text_interpolation, - ACTIONS(1266), 10, + ACTIONS(955), 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, @@ -72727,18 +75218,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1264), 28, + ACTIONS(953), 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, @@ -72756,17 +75245,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16183] = 5, + [16390] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(755), 1, + STATE(776), 1, sym_text_interpolation, - ACTIONS(1640), 10, + ACTIONS(965), 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, @@ -72774,18 +75264,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1638), 28, + ACTIONS(963), 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, @@ -72803,80 +75291,249 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [16235] = 5, + [16441] = 27, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(756), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1715), 1, + sym_name, + ACTIONS(1717), 1, + anon_sym_COMMA, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1721), 1, + anon_sym_RPAREN, + ACTIONS(1723), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1725), 1, + anon_sym_QMARK, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + STATE(777), 1, + sym_text_interpolation, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1024), 1, + sym_attribute_list, + STATE(1241), 1, + sym_qualified_name, + STATE(1300), 1, + sym_namespace_name_as_prefix, + STATE(1329), 1, + sym_union_type, + STATE(1333), 1, + sym__types, + STATE(1371), 1, + sym__reserved_identifier, + STATE(1397), 1, + sym__type, + STATE(1623), 1, + sym_variable_name, + STATE(1957), 1, + sym_namespace_name, + STATE(1245), 2, + sym_optional_type, + sym_primitive_type, + STATE(1668), 2, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + ACTIONS(1552), 10, + 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_false, + anon_sym_null, + [16536] = 27, + 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(1715), 1, + sym_name, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1723), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1725), 1, + anon_sym_QMARK, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(1729), 1, + anon_sym_COMMA, + ACTIONS(1731), 1, + anon_sym_RPAREN, + STATE(778), 1, sym_text_interpolation, - ACTIONS(926), 11, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1024), 1, + sym_attribute_list, + STATE(1241), 1, + sym_qualified_name, + STATE(1300), 1, + sym_namespace_name_as_prefix, + STATE(1329), 1, + sym_union_type, + STATE(1333), 1, + sym__types, + STATE(1371), 1, + sym__reserved_identifier, + STATE(1397), 1, + sym__type, + STATE(1623), 1, + sym_variable_name, + STATE(1957), 1, + sym_namespace_name, + STATE(1245), 2, + sym_optional_type, + sym_primitive_type, + STATE(1558), 2, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + ACTIONS(1552), 10, + 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_false, + anon_sym_null, + [16631] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_AMP, + ACTIONS(1737), 1, anon_sym_QMARK, + ACTIONS(1739), 1, anon_sym_PIPE, - aux_sym_else_clause_token1, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, + anon_sym_AMP_AMP, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1763), 1, + anon_sym_PERCENT, + STATE(779), 1, + sym_text_interpolation, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1741), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(924), 26, - sym__automatic_semicolon, + ACTIONS(1753), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1733), 11, anon_sym_SEMI, - anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RPAREN, + 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, - anon_sym_DOT, - anon_sym_PERCENT, - [16286] = 5, + [16709] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(757), 1, - sym_text_interpolation, - ACTIONS(930), 11, - anon_sym_AMP, + ACTIONS(1495), 1, anon_sym_QMARK, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1739), 1, anon_sym_PIPE, - aux_sym_else_clause_token1, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1763), 1, + anon_sym_PERCENT, + STATE(780), 1, + sym_text_interpolation, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1741), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(928), 26, - sym__automatic_semicolon, + ACTIONS(1753), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1493), 14, anon_sym_SEMI, - anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, anon_sym_EQ_GT, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -72885,133 +75542,122 @@ 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [16337] = 23, + [16781] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1644), 1, - anon_sym_EQ_GT, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(758), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(781), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1618), 7, + ACTIONS(1765), 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, - [16423] = 22, + [16865] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(759), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(782), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1680), 8, + ACTIONS(1622), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73020,107 +75666,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [16507] = 22, + [16949] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(760), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(1773), 1, + anon_sym_EQ_GT, + STATE(783), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1682), 8, + ACTIONS(1707), 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, - [16591] = 14, + [17035] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1672), 1, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, + anon_sym_PIPE, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, + anon_sym_AMP_AMP, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(761), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(784), 1, sym_text_interpolation, - ACTIONS(1439), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 15, + ACTIONS(1775), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73129,67 +75791,60 @@ 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, - [16659] = 22, + [17119] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(762), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(785), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1684), 8, + ACTIONS(1777), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73198,60 +75853,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [16743] = 22, + [17203] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(763), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(786), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1686), 8, + ACTIONS(1779), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73260,60 +75915,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [16827] = 22, + [17287] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(764), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(787), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1688), 8, + ACTIONS(1781), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73322,56 +75977,152 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [16911] = 20, + [17371] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1783), 1, + anon_sym_STAR_STAR, + STATE(788), 1, + sym_text_interpolation, + ACTIONS(1580), 10, anon_sym_AMP, - ACTIONS(1646), 1, anon_sym_QMARK, - ACTIONS(1648), 1, anon_sym_PIPE, - ACTIONS(1652), 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(1578), 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, - ACTIONS(1654), 1, aux_sym_binary_expression_token2, - ACTIONS(1660), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, anon_sym_CARET, - ACTIONS(1672), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1678), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_PERCENT, - STATE(765), 1, + [17423] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, + anon_sym_PIPE, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, + anon_sym_AMP_AMP, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1763), 1, + anon_sym_PERCENT, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(789), 1, + sym_text_interpolation, + ACTIONS(1751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1741), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1755), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1753), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1785), 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, + [17507] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1763), 1, + anon_sym_PERCENT, + STATE(790), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1495), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 10, + ACTIONS(1493), 15, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73380,50 +76131,54 @@ 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, - [16991] = 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [17573] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1439), 1, - anon_sym_QMARK, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1648), 1, - anon_sym_PIPE, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(766), 1, + STATE(791), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1495), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 14, + ACTIONS(1493), 14, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73438,60 +76193,101 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [17063] = 22, + [17643] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1763), 1, + anon_sym_PERCENT, + STATE(792), 1, + sym_text_interpolation, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1495), 8, anon_sym_AMP, - ACTIONS(1646), 1, anon_sym_QMARK, - ACTIONS(1648), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1493), 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(1654), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, anon_sym_CARET, - ACTIONS(1672), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1678), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [17697] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1739), 1, + anon_sym_PIPE, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, + anon_sym_AMP_AMP, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(767), 1, + ACTIONS(1789), 1, + anon_sym_QMARK, + STATE(793), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1690), 8, + ACTIONS(1787), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73500,60 +76296,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [17147] = 22, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [17775] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(768), 1, + STATE(794), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1692), 8, + ACTIONS(1493), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73562,60 +76355,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [17231] = 22, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [17853] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(769), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(795), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1694), 8, + ACTIONS(1493), 9, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73624,64 +76418,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [17315] = 25, + aux_sym_binary_expression_token3, + [17935] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(270), 1, + ACTIONS(271), 1, anon_sym_list, - ACTIONS(525), 1, + ACTIONS(528), 1, sym_name, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(545), 1, + ACTIONS(548), 1, anon_sym_array, - ACTIONS(575), 1, + ACTIONS(578), 1, anon_sym_DOLLAR, - ACTIONS(1252), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1329), 1, anon_sym_LBRACK, - ACTIONS(1499), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(603), 1, sym__reserved_identifier, - STATE(770), 1, + STATE(796), 1, sym_text_interpolation, - STATE(1178), 1, + STATE(1221), 1, sym_qualified_name, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1266), 1, - sym__dereferencable_expression, - STATE(1269), 1, + STATE(1303), 1, sym_namespace_name_as_prefix, - STATE(1736), 1, + STATE(1310), 1, + sym__dereferencable_expression, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1912), 1, sym__list_destructing, - STATE(1863), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, + STATE(1919), 1, sym_relative_scope, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - ACTIONS(573), 2, + STATE(1985), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, sym_heredoc, sym_string, - ACTIONS(571), 3, + ACTIONS(574), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1168), 3, + STATE(1215), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(1179), 4, + STATE(1212), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1133), 7, + STATE(1190), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -73689,60 +76484,56 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [17405] = 22, + [18025] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(771), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + STATE(797), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1696), 8, + ACTIONS(1493), 10, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73751,54 +76542,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [17489] = 19, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [18105] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, - anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1495), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1660), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(772), 1, + STATE(798), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1698), 11, + ACTIONS(1493), 13, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73807,53 +76596,130 @@ 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, - [17567] = 17, + anon_sym_PIPE_PIPE, + [18179] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(271), 1, + anon_sym_list, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, sym_comment, - ACTIONS(1439), 1, - anon_sym_QMARK, - ACTIONS(1642), 1, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1576), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym__reserved_identifier, + STATE(799), 1, + sym_text_interpolation, + STATE(1221), 1, + sym_qualified_name, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1310), 1, + sym__dereferencable_expression, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1665), 1, + sym__list_destructing, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1985), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1215), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1201), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1159), 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, + [18269] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1648), 1, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1662), 1, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(773), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(800), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 13, + ACTIONS(1791), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73862,40 +76728,60 @@ 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, - [17641] = 9, + [18353] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1678), 1, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, + anon_sym_PIPE, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, + anon_sym_AMP_AMP, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(774), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(801), 1, sym_text_interpolation, - ACTIONS(1674), 2, + ACTIONS(1751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1439), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1437), 20, + ACTIONS(1753), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1793), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73904,66 +76790,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + [18437] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, + anon_sym_PIPE, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, anon_sym_AMP_AMP, + ACTIONS(1749), 1, anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1763), 1, + anon_sym_PERCENT, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(802), 1, + sym_text_interpolation, + ACTIONS(1751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1741), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1755), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [17699] = 19, + ACTIONS(1795), 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, + [18521] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1648), 1, - anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1660), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, - anon_sym_AMP_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - ACTIONS(1702), 1, - anon_sym_QMARK, - STATE(775), 1, + STATE(803), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1495), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1700), 11, + ACTIONS(1493), 15, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -73972,41 +76899,45 @@ 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, - [17777] = 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [18589] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(776), 1, + STATE(804), 1, sym_text_interpolation, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1439), 5, + ACTIONS(1495), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 19, + ACTIONS(1493), 19, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74026,23 +76957,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [17839] = 8, + [18651] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1678), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1715), 1, + sym_name, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1723), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1725), 1, + anon_sym_QMARK, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(1797), 1, + anon_sym_RPAREN, + STATE(805), 1, + sym_text_interpolation, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1024), 1, + sym_attribute_list, + STATE(1241), 1, + sym_qualified_name, + STATE(1300), 1, + sym_namespace_name_as_prefix, + STATE(1329), 1, + sym_union_type, + STATE(1333), 1, + sym__types, + STATE(1371), 1, + sym__reserved_identifier, + STATE(1397), 1, + sym__type, + STATE(1623), 1, + sym_variable_name, + STATE(1957), 1, + sym_namespace_name, + STATE(1245), 2, + sym_optional_type, + sym_primitive_type, + STATE(1898), 2, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + ACTIONS(1552), 10, + 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_false, + anon_sym_null, + [18743] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(777), 1, + STATE(806), 1, sym_text_interpolation, - ACTIONS(1676), 2, + ACTIONS(1759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1439), 8, + ACTIONS(1495), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -74051,7 +77051,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1437), 22, + ACTIONS(1493), 20, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74072,62 +77072,32 @@ 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, - [17895] = 22, + [18801] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, - anon_sym_AMP, - ACTIONS(1646), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, - anon_sym_AMP_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(778), 1, + STATE(807), 1, sym_text_interpolation, - ACTIONS(1666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1674), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1495), 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(1668), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1704), 8, + ACTIONS(1493), 22, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74136,60 +77106,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [17979] = 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, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18857] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(779), 1, + ACTIONS(1801), 1, + anon_sym_QMARK, + STATE(808), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1706), 8, + ACTIONS(1799), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74198,60 +77176,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [18063] = 22, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [18935] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(780), 1, + ACTIONS(1805), 1, + anon_sym_QMARK, + STATE(809), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1708), 8, + ACTIONS(1803), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74260,116 +77235,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [18147] = 25, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [19013] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(270), 1, - anon_sym_list, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(575), 1, + ACTIONS(1715), 1, + sym_name, + ACTIONS(1719), 1, + anon_sym_AMP, + ACTIONS(1723), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1725), 1, + anon_sym_QMARK, + ACTIONS(1727), 1, anon_sym_DOLLAR, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1499), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym__reserved_identifier, - STATE(781), 1, + ACTIONS(1807), 1, + anon_sym_RPAREN, + STATE(810), 1, sym_text_interpolation, - STATE(1178), 1, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1024), 1, + sym_attribute_list, + STATE(1241), 1, sym_qualified_name, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1266), 1, - sym__dereferencable_expression, - STATE(1269), 1, + STATE(1300), 1, sym_namespace_name_as_prefix, - STATE(1530), 1, - sym__list_destructing, - STATE(1863), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, + STATE(1329), 1, + sym_union_type, + STATE(1333), 1, + sym__types, + STATE(1371), 1, + sym__reserved_identifier, + STATE(1397), 1, + sym__type, + STATE(1623), 1, + sym_variable_name, + STATE(1957), 1, sym_namespace_name, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - ACTIONS(571), 3, + STATE(1245), 2, + sym_optional_type, + sym_primitive_type, + STATE(1898), 2, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1168), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1157), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1119), 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, - [18237] = 13, + ACTIONS(1552), 10, + 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_false, + anon_sym_null, + [19105] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1672), 1, - anon_sym_GT_EQ, - ACTIONS(1678), 1, - anon_sym_PERCENT, - STATE(782), 1, + ACTIONS(1783), 1, + anon_sym_STAR_STAR, + STATE(811), 1, sym_text_interpolation, - ACTIONS(1666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1674), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1676), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1439), 3, + ACTIONS(1604), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1650), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1670), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1437), 15, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1602), 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, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -74378,54 +77341,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [18303] = 19, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [19157] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(783), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(812), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1710), 11, + ACTIONS(1809), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74434,57 +77412,60 @@ 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, - [18381] = 19, + [19241] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(784), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(813), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1712), 11, + ACTIONS(1811), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74493,109 +77474,122 @@ 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, - [18459] = 6, + [19325] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1714), 1, - anon_sym_STAR_STAR, - STATE(785), 1, - sym_text_interpolation, - ACTIONS(1507), 10, + ACTIONS(1735), 1, anon_sym_AMP, + ACTIONS(1737), 1, anon_sym_QMARK, + ACTIONS(1739), 1, anon_sym_PIPE, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, + anon_sym_AMP_AMP, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1763), 1, + anon_sym_PERCENT, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(814), 1, + sym_text_interpolation, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1761), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1741), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 25, + ACTIONS(1753), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1813), 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_PLUS, - anon_sym_DASH, + anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + [19409] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, + anon_sym_PIPE, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, anon_sym_AMP_AMP, + ACTIONS(1749), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(1757), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(1763), 1, anon_sym_PERCENT, - [18511] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1642), 1, - anon_sym_AMP, - ACTIONS(1646), 1, - anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1767), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, + ACTIONS(1769), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, + ACTIONS(1771), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, - anon_sym_AMP_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_GT_EQ, - ACTIONS(1678), 1, - anon_sym_PERCENT, - STATE(786), 1, + STATE(815), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1716), 8, + ACTIONS(1815), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74604,106 +77598,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [18595] = 19, + [19493] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1648), 1, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - ACTIONS(1720), 1, - anon_sym_QMARK, - STATE(787), 1, - sym_text_interpolation, - ACTIONS(1666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1674), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1676), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1650), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1670), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1668), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1718), 11, - 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, + ACTIONS(1767), 1, aux_sym_binary_expression_token2, + ACTIONS(1769), 1, aux_sym_binary_expression_token3, + ACTIONS(1771), 1, aux_sym_binary_expression_token4, - [18673] = 15, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1642), 1, - anon_sym_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_GT_EQ, - ACTIONS(1678), 1, - anon_sym_PERCENT, - STATE(788), 1, + STATE(816), 1, sym_text_interpolation, - ACTIONS(1439), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 14, + ACTIONS(1817), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74712,113 +77660,126 @@ 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, - [18743] = 7, + [19577] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1678), 1, - anon_sym_PERCENT, - STATE(789), 1, - sym_text_interpolation, - ACTIONS(1676), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1439), 8, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1715), 1, + sym_name, + ACTIONS(1719), 1, anon_sym_AMP, + ACTIONS(1723), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1725), 1, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1437), 25, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(1819), 1, 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, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [18797] = 22, + STATE(817), 1, + sym_text_interpolation, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1024), 1, + sym_attribute_list, + STATE(1241), 1, + sym_qualified_name, + STATE(1300), 1, + sym_namespace_name_as_prefix, + STATE(1329), 1, + sym_union_type, + STATE(1333), 1, + sym__types, + STATE(1371), 1, + sym__reserved_identifier, + STATE(1397), 1, + sym__type, + STATE(1623), 1, + sym_variable_name, + STATE(1957), 1, + sym_namespace_name, + STATE(1245), 2, + sym_optional_type, + sym_primitive_type, + STATE(1898), 2, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + ACTIONS(1552), 10, + 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_false, + anon_sym_null, + [19669] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(790), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(818), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1722), 8, + ACTIONS(1821), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74827,60 +77788,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [18881] = 22, + [19753] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(791), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(819), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1724), 8, + ACTIONS(1823), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74889,100 +77850,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [18965] = 6, + [19837] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1714), 1, - anon_sym_STAR_STAR, - STATE(792), 1, - sym_text_interpolation, - ACTIONS(1555), 10, + ACTIONS(1735), 1, anon_sym_AMP, + ACTIONS(1737), 1, anon_sym_QMARK, + ACTIONS(1739), 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(1553), 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, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [19017] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1642), 1, - anon_sym_AMP, - ACTIONS(1648), 1, - anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - ACTIONS(1728), 1, - anon_sym_QMARK, - STATE(793), 1, + STATE(820), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1726), 11, + ACTIONS(1825), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -74994,122 +77909,120 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [19095] = 22, + [19915] = 26, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1715), 1, + sym_name, + ACTIONS(1719), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1723), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1725), 1, anon_sym_QMARK, - ACTIONS(1648), 1, - anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, - anon_sym_AMP_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_GT_EQ, - ACTIONS(1678), 1, - anon_sym_PERCENT, - STATE(794), 1, - sym_text_interpolation, - ACTIONS(1666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1674), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1676), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1650), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1670), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1668), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1730), 8, - anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(1827), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [19179] = 22, + STATE(821), 1, + sym_text_interpolation, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1024), 1, + sym_attribute_list, + STATE(1241), 1, + sym_qualified_name, + STATE(1300), 1, + sym_namespace_name_as_prefix, + STATE(1329), 1, + sym_union_type, + STATE(1333), 1, + sym__types, + STATE(1371), 1, + sym__reserved_identifier, + STATE(1397), 1, + sym__type, + STATE(1623), 1, + sym_variable_name, + STATE(1957), 1, + sym_namespace_name, + STATE(1245), 2, + sym_optional_type, + sym_primitive_type, + STATE(1898), 2, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + ACTIONS(1552), 10, + 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_false, + anon_sym_null, + [20007] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(795), 1, + STATE(822), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1610), 8, + ACTIONS(1829), 11, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -75118,54 +78031,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [19263] = 19, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [20085] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1763), 1, anon_sym_PERCENT, - STATE(796), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(823), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1761), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 11, + ACTIONS(1831), 8, anon_sym_SEMI, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, @@ -75174,186 +78096,175 @@ 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, - [19341] = 21, + [20169] = 20, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(797), 1, + STATE(824), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 9, + ACTIONS(1493), 9, anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, + anon_sym_COMMA, 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, aux_sym_binary_expression_token3, - [19423] = 22, + aux_sym_binary_expression_token4, + [20248] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, - anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1495), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1833), 1, + anon_sym_AMP, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1652), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1678), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(798), 1, + STATE(825), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1676), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1650), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1732), 8, + ACTIONS(1493), 12, anon_sym_SEMI, - aux_sym_namespace_aliasing_clause_token1, + anon_sym_COMMA, 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, - [19507] = 22, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [20321] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(799), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(826), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1686), 7, + ACTIONS(1781), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -75361,62 +78272,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [19590] = 24, + [20404] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(545), 1, + ACTIONS(548), 1, anon_sym_array, - ACTIONS(623), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(628), 1, sym_name, - ACTIONS(1252), 1, + ACTIONS(1329), 1, anon_sym_LBRACK, - ACTIONS(1499), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - ACTIONS(1770), 1, + ACTIONS(1869), 1, aux_sym_class_declaration_token1, - ACTIONS(1772), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR, - STATE(653), 1, + STATE(688), 1, sym__reserved_identifier, - STATE(662), 1, + STATE(702), 1, sym_qualified_name, - STATE(800), 1, + STATE(827), 1, sym_text_interpolation, - STATE(1289), 1, + STATE(1304), 1, sym__dereferencable_expression, - STATE(1299), 1, + STATE(1311), 1, sym_namespace_name_as_prefix, - STATE(1832), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, + STATE(1919), 1, sym_relative_scope, - STATE(1907), 1, + STATE(1953), 1, + sym__scope_resolution_qualifier, + STATE(1957), 1, sym_namespace_name, - ACTIONS(573), 2, + ACTIONS(576), 2, sym_heredoc, sym_string, - STATE(1261), 2, + STATE(1335), 2, sym_class_constant_access_expression, sym_cast_variable, - ACTIONS(274), 3, + ACTIONS(275), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(669), 3, + STATE(700), 3, sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - STATE(687), 3, + STATE(701), 3, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1168), 7, + STATE(1215), 7, sym_parenthesized_expression, sym_function_call_expression, sym_scoped_call_expression, @@ -75424,60 +78335,48 @@ static uint16_t ts_small_parse_table[] = { sym_nullsafe_member_call_expression, sym_array_creation_expression, sym__string, - [19677] = 22, + [20491] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, - anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1495), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1833), 1, + anon_sym_AMP, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, - aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, - anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(801), 1, + STATE(828), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1732), 7, + ACTIONS(1493), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -75485,54 +78384,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [19760] = 19, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [20562] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, - anon_sym_QMARK, - ACTIONS(1738), 1, - anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1750), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, - anon_sym_AMP_AMP, - ACTIONS(1754), 1, - anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(802), 1, + STATE(829), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1495), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 10, + ACTIONS(1493), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -75540,59 +78436,45 @@ 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, - [19837] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1734), 1, - anon_sym_AMP, - ACTIONS(1736), 1, - anon_sym_QMARK, - ACTIONS(1738), 1, - anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, - aux_sym_binary_expression_token2, - ACTIONS(1750), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, anon_sym_CARET, - ACTIONS(1762), 1, + [20629] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(803), 1, + STATE(830), 1, sym_text_interpolation, - ACTIONS(1756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1437), 9, + ACTIONS(1495), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1493), 18, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -75600,60 +78482,71 @@ 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, - [19916] = 21, + anon_sym_PIPE_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, + [20690] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(804), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(831), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 8, + ACTIONS(1817), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -75661,51 +78554,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - [19997] = 17, + [20773] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1439), 1, - anon_sym_QMARK, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1738), 1, + ACTIONS(1835), 1, + anon_sym_QMARK, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1752), 1, + ACTIONS(1841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1843), 1, + aux_sym_binary_expression_token2, + ACTIONS(1845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(805), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(832), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 12, + ACTIONS(1831), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -75713,53 +78615,58 @@ 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, - [20070] = 16, + [20856] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1439), 1, - anon_sym_QMARK, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1738), 1, + ACTIONS(1835), 1, + anon_sym_QMARK, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1754), 1, + ACTIONS(1841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1843), 1, + aux_sym_binary_expression_token2, + ACTIONS(1845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1847), 1, + anon_sym_AMP_AMP, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(806), 1, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(833), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 13, + ACTIONS(1493), 8, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -75767,51 +78674,100 @@ 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, - [20141] = 14, + [20937] = 25, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(1715), 1, + sym_name, + ACTIONS(1719), 1, anon_sym_AMP, - ACTIONS(1762), 1, - anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1723), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1725), 1, + anon_sym_QMARK, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + STATE(834), 1, + sym_text_interpolation, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1024), 1, + sym_attribute_list, + STATE(1241), 1, + sym_qualified_name, + STATE(1300), 1, + sym_namespace_name_as_prefix, + STATE(1329), 1, + sym_union_type, + STATE(1333), 1, + sym__types, + STATE(1371), 1, + sym__reserved_identifier, + STATE(1397), 1, + sym__type, + STATE(1623), 1, + sym_variable_name, + STATE(1957), 1, + sym_namespace_name, + STATE(1245), 2, + sym_optional_type, + sym_primitive_type, + STATE(1898), 2, + sym_simple_parameter, + sym_variadic_parameter, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + ACTIONS(1552), 10, + 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_false, + anon_sym_null, + [21026] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(807), 1, + STATE(835), 1, sym_text_interpolation, - ACTIONS(1439), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1495), 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(1758), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1437), 14, + ACTIONS(1493), 19, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -75826,101 +78782,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [20208] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1499), 1, - anon_sym_LPAREN, - ACTIONS(1774), 1, - aux_sym_class_declaration_token1, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(584), 1, - sym__reserved_identifier, - STATE(611), 1, - sym_qualified_name, - STATE(808), 1, - sym_text_interpolation, - STATE(1255), 1, - sym__dereferencable_expression, - STATE(1284), 1, - sym_namespace_name_as_prefix, - STATE(1858), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - STATE(1261), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(571), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(589), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(603), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1168), 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, - [20295] = 11, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [21083] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(809), 1, + STATE(836), 1, sym_text_interpolation, - ACTIONS(1764), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1439), 5, + ACTIONS(1495), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1493), 21, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -75938,117 +78830,161 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [20356] = 23, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21138] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, - aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - ACTIONS(1778), 1, - anon_sym_EQ_GT, - STATE(810), 1, + STATE(837), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1618), 6, + ACTIONS(1493), 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, - [20441] = 19, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [21215] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1728), 1, + ACTIONS(1873), 1, + anon_sym_STAR_STAR, + STATE(838), 1, + sym_text_interpolation, + ACTIONS(1604), 10, + anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1734), 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(1602), 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, + [21266] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1738), 1, + ACTIONS(1835), 1, + anon_sym_QMARK, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(811), 1, + STATE(839), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1726), 10, + ACTIONS(1733), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76059,60 +78995,54 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [20518] = 22, + [21343] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, - anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1789), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1833), 1, + anon_sym_AMP, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, - aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(812), 1, + STATE(840), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1706), 7, + ACTIONS(1787), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76120,26 +79050,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [20601] = 9, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [21420] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(813), 1, + STATE(841), 1, sym_text_interpolation, - ACTIONS(1764), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1439), 8, + ACTIONS(1495), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -76148,11 +79074,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1437), 19, + ACTIONS(1493), 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, @@ -76168,60 +79096,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - [20658] = 22, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + [21473] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1576), 1, + anon_sym_LPAREN, + ACTIONS(1875), 1, + aux_sym_class_declaration_token1, + ACTIONS(1877), 1, + anon_sym_DOLLAR, + STATE(603), 1, + sym__reserved_identifier, + STATE(630), 1, + sym_qualified_name, + STATE(842), 1, + sym_text_interpolation, + STATE(1298), 1, + sym_namespace_name_as_prefix, + STATE(1338), 1, + sym__dereferencable_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1982), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + STATE(1335), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(615), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(629), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1215), 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, + [21560] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, - aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(814), 1, + STATE(843), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1708), 7, + ACTIONS(1825), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76229,23 +79217,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [20741] = 8, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [21637] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1768), 1, - anon_sym_PERCENT, - STATE(815), 1, + ACTIONS(1873), 1, + anon_sym_STAR_STAR, + STATE(844), 1, sym_text_interpolation, - ACTIONS(1766), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1740), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1439), 8, + ACTIONS(1580), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -76254,12 +79238,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1437), 21, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1578), 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, @@ -76276,33 +79263,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - [20796] = 6, + anon_sym_DOT, + anon_sym_PERCENT, + [21688] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1780), 1, - anon_sym_STAR_STAR, - STATE(816), 1, - sym_text_interpolation, - ACTIONS(1507), 10, + ACTIONS(1833), 1, anon_sym_AMP, + ACTIONS(1849), 1, + anon_sym_CARET, + ACTIONS(1857), 1, + anon_sym_GT_EQ, + ACTIONS(1863), 1, + anon_sym_PERCENT, + STATE(845), 1, + sym_text_interpolation, + ACTIONS(1495), 2, anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1859), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1861), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1839), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1505), 24, + ACTIONS(1853), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1493), 13, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -76311,70 +79319,44 @@ 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [20847] = 22, + [21757] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, - anon_sym_AMP, - ACTIONS(1736), 1, - anon_sym_QMARK, - ACTIONS(1738), 1, - anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, - aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, - anon_sym_AMP_AMP, - ACTIONS(1754), 1, - anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(817), 1, + STATE(846), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1495), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1722), 7, + ACTIONS(1493), 14, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76382,60 +79364,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [20930] = 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, + [21822] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(818), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(847), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1724), 7, + ACTIONS(1815), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76443,54 +79432,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21013] = 19, + [21905] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1750), 1, + ACTIONS(1843), 1, + aux_sym_binary_expression_token2, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(819), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(848), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1712), 10, + ACTIONS(1777), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76498,57 +79493,60 @@ 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, - [21090] = 19, + [21988] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1750), 1, + ACTIONS(1843), 1, + aux_sym_binary_expression_token2, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(820), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(849), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1710), 10, + ACTIONS(1765), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76556,109 +79554,121 @@ 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, - [21167] = 7, + [22071] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1768), 1, - anon_sym_PERCENT, - STATE(821), 1, - sym_text_interpolation, - ACTIONS(1766), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1439), 8, + ACTIONS(1833), 1, anon_sym_AMP, + ACTIONS(1835), 1, anon_sym_QMARK, + ACTIONS(1837), 1, anon_sym_PIPE, + ACTIONS(1841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1843), 1, + aux_sym_binary_expression_token2, + ACTIONS(1845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1847), 1, + anon_sym_AMP_AMP, + ACTIONS(1849), 1, + anon_sym_CARET, + ACTIONS(1857), 1, + anon_sym_GT_EQ, + ACTIONS(1863), 1, + anon_sym_PERCENT, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(850), 1, + sym_text_interpolation, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1859), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1861), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1839), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1437), 24, + ACTIONS(1853), 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_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, - [21220] = 22, + [22154] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(822), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(851), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1684), 7, + ACTIONS(1785), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76666,60 +79676,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21303] = 22, + [22237] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, - anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1801), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1833), 1, + anon_sym_AMP, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, - aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(823), 1, + STATE(852), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1730), 7, + ACTIONS(1799), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76727,47 +79731,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21386] = 15, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [22314] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1754), 1, + ACTIONS(1835), 1, + anon_sym_QMARK, + ACTIONS(1837), 1, + anon_sym_PIPE, + ACTIONS(1841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1843), 1, + aux_sym_binary_expression_token2, + ACTIONS(1845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1847), 1, + anon_sym_AMP_AMP, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(824), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(853), 1, sym_text_interpolation, - ACTIONS(1439), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 13, + ACTIONS(1779), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76775,50 +79795,54 @@ 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, - [21455] = 13, + [22397] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1833), 1, + anon_sym_AMP, + ACTIONS(1835), 1, + anon_sym_QMARK, + ACTIONS(1837), 1, + anon_sym_PIPE, + ACTIONS(1841), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1845), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1847), 1, + anon_sym_AMP_AMP, + ACTIONS(1849), 1, + anon_sym_CARET, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(825), 1, + STATE(854), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1439), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 14, + ACTIONS(1829), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76826,67 +79850,63 @@ 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, - [21520] = 22, + [22474] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(826), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(855), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1682), 7, + ACTIONS(1795), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -76894,62 +79914,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21603] = 24, + [22557] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(525), 1, + ACTIONS(528), 1, sym_name, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(545), 1, + ACTIONS(548), 1, anon_sym_array, - ACTIONS(575), 1, + ACTIONS(578), 1, anon_sym_DOLLAR, - ACTIONS(849), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(854), 1, anon_sym_LBRACK, - ACTIONS(1499), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(603), 1, sym__reserved_identifier, - STATE(827), 1, + STATE(856), 1, sym_text_interpolation, - STATE(1178), 1, + STATE(1221), 1, sym_qualified_name, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1266), 1, - sym__dereferencable_expression, - STATE(1269), 1, + STATE(1303), 1, sym_namespace_name_as_prefix, - STATE(1742), 1, + STATE(1310), 1, + sym__dereferencable_expression, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1905), 1, sym__array_destructing, - STATE(1863), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, + STATE(1919), 1, sym_relative_scope, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - ACTIONS(573), 2, + STATE(1985), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, sym_heredoc, sym_string, - ACTIONS(571), 3, + ACTIONS(574), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1168), 3, + STATE(1215), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(1181), 4, + STATE(1213), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1131), 7, + STATE(1170), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -76957,60 +79977,60 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [21690] = 22, + [22644] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(828), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(857), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1692), 7, + ACTIONS(1823), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -77018,54 +80038,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21773] = 19, + [22727] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1702), 1, - anon_sym_QMARK, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1738), 1, + ACTIONS(1835), 1, + anon_sym_QMARK, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1750), 1, + ACTIONS(1843), 1, + aux_sym_binary_expression_token2, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(829), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(858), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1700), 10, + ACTIONS(1811), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -77073,63 +80099,60 @@ 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, - [21850] = 22, + [22810] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(830), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(859), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1690), 7, + ACTIONS(1775), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -77137,60 +80160,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [21933] = 22, + [22893] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(831), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(860), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1688), 7, + ACTIONS(1813), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -77198,54 +80221,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [22016] = 19, + [22976] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1750), 1, + ACTIONS(1843), 1, + aux_sym_binary_expression_token2, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(832), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(861), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1698), 10, + ACTIONS(1809), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -77253,124 +80282,116 @@ 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, - [22093] = 22, + [23059] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(833), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + ACTIONS(1879), 1, + anon_sym_EQ_GT, + STATE(862), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1694), 7, + ACTIONS(1707), 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, - [22176] = 22, + [23144] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, - anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1833), 1, + anon_sym_AMP, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, - aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(834), 1, + STATE(863), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1680), 7, + ACTIONS(1803), 10, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -77378,121 +80399,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [22259] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1734), 1, - anon_sym_AMP, - ACTIONS(1736), 1, - anon_sym_QMARK, - ACTIONS(1738), 1, - anon_sym_PIPE, - ACTIONS(1742), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, aux_sym_binary_expression_token3, - ACTIONS(1748), 1, aux_sym_binary_expression_token4, - ACTIONS(1750), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, - anon_sym_AMP_AMP, - ACTIONS(1754), 1, - anon_sym_CARET, - ACTIONS(1762), 1, - anon_sym_GT_EQ, - ACTIONS(1768), 1, - anon_sym_PERCENT, - STATE(835), 1, - sym_text_interpolation, - ACTIONS(1756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1764), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1766), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1740), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1760), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1758), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1704), 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, - [22342] = 22, + [23221] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(836), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(864), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1610), 7, + ACTIONS(1793), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -77500,60 +80463,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [22425] = 22, + [23304] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(837), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(865), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1716), 7, + ACTIONS(1622), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -77561,54 +80524,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, aux_sym_binary_expression_token1, - [22508] = 19, + [23387] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1720), 1, - anon_sym_QMARK, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1738), 1, + ACTIONS(1835), 1, + anon_sym_QMARK, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1750), 1, + ACTIONS(1843), 1, + aux_sym_binary_expression_token2, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1863), 1, anon_sym_PERCENT, - STATE(838), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(866), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1861), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1718), 10, + ACTIONS(1821), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACE, @@ -77616,80 +80585,74 @@ 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, - [22585] = 22, + [23470] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1748), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1768), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(839), 1, + STATE(867), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1766), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1740), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1696), 7, + ACTIONS(1817), 6, + sym__automatic_semicolon, 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, - [22668] = 6, + [23552] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1780), 1, - anon_sym_STAR_STAR, - STATE(840), 1, + STATE(868), 1, sym_text_interpolation, - ACTIONS(1555), 10, + ACTIONS(904), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -77700,14 +80663,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1553), 24, + ACTIONS(902), 24, + sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_RBRACK, + anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -77725,14 +80688,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22719] = 5, + [23600] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(841), 1, + STATE(869), 1, sym_text_interpolation, - ACTIONS(1559), 10, + ACTIONS(1616), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -77743,7 +80706,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1557), 24, + ACTIONS(1614), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -77768,31 +80731,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22767] = 5, + [23648] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(842), 1, - sym_text_interpolation, - ACTIONS(1519), 10, + ACTIONS(1881), 1, anon_sym_AMP, + ACTIONS(1883), 1, anon_sym_QMARK, + ACTIONS(1885), 1, anon_sym_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1891), 1, + aux_sym_binary_expression_token2, + ACTIONS(1893), 1, + aux_sym_binary_expression_token3, + ACTIONS(1895), 1, + aux_sym_binary_expression_token4, + ACTIONS(1897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, + anon_sym_AMP_AMP, + ACTIONS(1901), 1, + anon_sym_CARET, + ACTIONS(1909), 1, + anon_sym_GT_EQ, + ACTIONS(1915), 1, + anon_sym_PERCENT, + STATE(870), 1, + sym_text_interpolation, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1887), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1517), 24, + ACTIONS(1905), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1813), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [23730] = 16, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1495), 1, + anon_sym_QMARK, + ACTIONS(1881), 1, + anon_sym_AMP, + ACTIONS(1885), 1, + anon_sym_PIPE, + ACTIONS(1901), 1, + anon_sym_CARET, + ACTIONS(1909), 1, + anon_sym_GT_EQ, + ACTIONS(1915), 1, + anon_sym_PERCENT, + STATE(871), 1, + sym_text_interpolation, + ACTIONS(1903), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1907), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1905), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1493), 12, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -77801,24 +80845,14 @@ 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [22815] = 5, + [23800] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(843), 1, + STATE(872), 1, sym_text_interpolation, - ACTIONS(1535), 10, + ACTIONS(1588), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -77829,7 +80863,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1533), 24, + ACTIONS(1586), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -77854,14 +80888,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22863] = 5, + [23848] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, sym_comment, - STATE(844), 1, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1576), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym__reserved_identifier, + STATE(873), 1, + sym_text_interpolation, + STATE(1221), 1, + sym_qualified_name, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1310), 1, + sym__dereferencable_expression, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1985), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1215), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(624), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(599), 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, + [23932] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(874), 1, sym_text_interpolation, - ACTIONS(906), 10, + ACTIONS(1628), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -77872,7 +80967,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(904), 24, + ACTIONS(1626), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -77897,14 +80992,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22911] = 5, + [23980] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(845), 1, + STATE(875), 1, sym_text_interpolation, - ACTIONS(1300), 10, + ACTIONS(1648), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -77915,7 +81010,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1294), 24, + ACTIONS(1646), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -77940,14 +81035,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [22959] = 5, + [24028] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(846), 1, + STATE(876), 1, sym_text_interpolation, - ACTIONS(918), 10, + ACTIONS(1495), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -77958,7 +81053,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(916), 24, + ACTIONS(1493), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -77983,75 +81078,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23007] = 23, + [24076] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1772), 1, - anon_sym_DOLLAR, - ACTIONS(1782), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym__reserved_identifier, - STATE(847), 1, - sym_text_interpolation, - STATE(1169), 1, - sym_qualified_name, - STATE(1252), 1, - sym__dereferencable_expression, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1859), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - ACTIONS(571), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1170), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(717), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(664), 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, - [23091] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(848), 1, + ACTIONS(1915), 1, + anon_sym_PERCENT, + STATE(877), 1, sym_text_interpolation, - ACTIONS(1567), 10, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1887), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1495), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78060,15 +81103,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1565), 24, + ACTIONS(1493), 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, @@ -78085,60 +81124,69 @@ 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, - [23139] = 6, + [24130] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1784), 1, - aux_sym_binary_expression_token1, - STATE(849), 1, - sym_text_interpolation, - ACTIONS(1567), 10, - anon_sym_AMP, + ACTIONS(1495), 1, anon_sym_QMARK, + ACTIONS(1881), 1, + anon_sym_AMP, + ACTIONS(1885), 1, anon_sym_PIPE, + ACTIONS(1899), 1, + anon_sym_AMP_AMP, + ACTIONS(1901), 1, + anon_sym_CARET, + ACTIONS(1909), 1, + anon_sym_GT_EQ, + ACTIONS(1915), 1, + anon_sym_PERCENT, + STATE(878), 1, + sym_text_interpolation, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1887), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1565), 23, + ACTIONS(1905), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1493), 11, 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, - [23189] = 5, + [24202] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(850), 1, + STATE(879), 1, sym_text_interpolation, - ACTIONS(1555), 10, + ACTIONS(1640), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78149,7 +81197,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1553), 24, + ACTIONS(1638), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78174,16 +81222,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23237] = 6, + [24250] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_STAR_STAR, - STATE(851), 1, + STATE(880), 1, sym_text_interpolation, - ACTIONS(1555), 10, + ACTIONS(1339), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78194,13 +81240,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1553), 23, + ACTIONS(1337), 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, @@ -78218,560 +81265,346 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [23287] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1374), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym__reserved_identifier, - STATE(852), 1, - sym_text_interpolation, - STATE(1178), 1, - sym_qualified_name, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1286), 1, - sym__dereferencable_expression, - STATE(1863), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - ACTIONS(571), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1168), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(592), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(580), 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, - [23371] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1788), 1, - sym_name, - ACTIONS(1790), 1, - anon_sym_COMMA, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1794), 1, - anon_sym_RPAREN, - ACTIONS(1796), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1798), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - STATE(853), 1, - sym_text_interpolation, - STATE(1225), 1, - sym_qualified_name, - STATE(1242), 1, - sym_union_type, - STATE(1254), 1, - sym__types, - STATE(1265), 1, - sym_namespace_name_as_prefix, - STATE(1321), 1, - sym__reserved_identifier, - STATE(1401), 1, - sym__type, - STATE(1429), 1, - sym_variable_name, - STATE(1907), 1, - sym_namespace_name, - STATE(1226), 2, - sym_optional_type, - sym_primitive_type, - STATE(1427), 2, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1479), 10, - 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_false, - anon_sym_null, - [23457] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1499), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym__reserved_identifier, - STATE(854), 1, - sym_text_interpolation, - STATE(1178), 1, - sym_qualified_name, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1266), 1, - sym__dereferencable_expression, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1863), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - ACTIONS(571), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1168), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1163), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1118), 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, - [23541] = 22, + [24298] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(855), 1, + STATE(881), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1730), 6, + ACTIONS(1793), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [23623] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1499), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym__reserved_identifier, - STATE(856), 1, - sym_text_interpolation, - STATE(1178), 1, - sym_qualified_name, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1266), 1, - sym__dereferencable_expression, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1863), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - ACTIONS(571), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1168), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(592), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(580), 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, - [23707] = 23, + [24380] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1499), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym__reserved_identifier, - STATE(857), 1, + STATE(882), 1, sym_text_interpolation, - STATE(1178), 1, - sym_qualified_name, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1266), 1, - sym__dereferencable_expression, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1863), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - ACTIONS(571), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1168), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1156), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1115), 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, - [23791] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1802), 1, + ACTIONS(1335), 10, anon_sym_AMP, - ACTIONS(1804), 1, anon_sym_QMARK, - ACTIONS(1806), 1, anon_sym_PIPE, - ACTIONS(1810), 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(1333), 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(1812), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, anon_sym_CARET, - ACTIONS(1830), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1836), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_PERCENT, - STATE(858), 1, + [24428] = 13, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_GT_EQ, + ACTIONS(1915), 1, + anon_sym_PERCENT, + STATE(883), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1495), 3, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1682), 6, + ACTIONS(1493), 13, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [23873] = 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, + [24492] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(859), 1, + STATE(884), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1716), 6, + 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, - [23955] = 22, + [24574] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, - anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1576), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym__reserved_identifier, + STATE(885), 1, + sym_text_interpolation, + STATE(1221), 1, + sym_qualified_name, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1310), 1, + sym__dereferencable_expression, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1985), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1215), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1207), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1162), 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, + [24658] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1881), 1, + anon_sym_AMP, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(860), 1, + STATE(886), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1610), 6, + ACTIONS(1803), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [24037] = 5, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [24734] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(861), 1, + STATE(887), 1, sym_text_interpolation, - ACTIONS(1612), 10, + ACTIONS(1697), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78782,7 +81615,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1610), 24, + ACTIONS(1695), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78807,14 +81640,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24085] = 5, + [24782] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(862), 1, + STATE(888), 1, sym_text_interpolation, - ACTIONS(1624), 10, + ACTIONS(1701), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -78825,7 +81658,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1622), 24, + ACTIONS(1699), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -78850,522 +81683,395 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24133] = 22, + [24830] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + STATE(889), 1, + sym_text_interpolation, + ACTIONS(1705), 10, anon_sym_AMP, - ACTIONS(1804), 1, anon_sym_QMARK, - ACTIONS(1806), 1, anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(863), 1, - sym_text_interpolation, - ACTIONS(1824), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1828), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1694), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1703), 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, - [24215] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1802), 1, - anon_sym_AMP, - ACTIONS(1804), 1, - anon_sym_QMARK, - ACTIONS(1806), 1, - anon_sym_PIPE, - ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, anon_sym_CARET, - ACTIONS(1830), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1836), 1, - anon_sym_PERCENT, - ACTIONS(1838), 1, - anon_sym_EQ_GT, - STATE(864), 1, - sym_text_interpolation, - ACTIONS(1824), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1832), 2, + anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1826), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1618), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24299] = 5, + anon_sym_PERCENT, + [24878] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, sym_comment, - STATE(865), 1, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1576), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym__reserved_identifier, + STATE(890), 1, sym_text_interpolation, - ACTIONS(1573), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1571), 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, - [24347] = 22, + STATE(1221), 1, + sym_qualified_name, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1310), 1, + sym__dereferencable_expression, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1985), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1215), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(1203), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1166), 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, + [24962] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(866), 1, + STATE(891), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1686), 6, + ACTIONS(1775), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [24429] = 22, + [25044] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1871), 1, + anon_sym_DOLLAR, + ACTIONS(1917), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym__reserved_identifier, + STATE(892), 1, + sym_text_interpolation, + STATE(1216), 1, + sym_qualified_name, + STATE(1295), 1, + sym__dereferencable_expression, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1968), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1218), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(734), 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, + [25128] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + STATE(893), 1, + sym_text_interpolation, + ACTIONS(1373), 10, anon_sym_AMP, - ACTIONS(1804), 1, anon_sym_QMARK, - ACTIONS(1806), 1, anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(867), 1, - sym_text_interpolation, - ACTIONS(1824), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1828), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1688), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1367), 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, - [24511] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1802), 1, - anon_sym_AMP, - ACTIONS(1804), 1, - anon_sym_QMARK, - ACTIONS(1806), 1, - anon_sym_PIPE, - ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(868), 1, - sym_text_interpolation, - ACTIONS(1824), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1828), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1826), 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(1690), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24593] = 22, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [25176] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, - anon_sym_QMARK, - ACTIONS(1806), 1, - anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(869), 1, + STATE(894), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1495), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1692), 6, + ACTIONS(1493), 13, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [24675] = 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, + [25242] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(531), 1, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(545), 1, + ACTIONS(548), 1, anon_sym_array, - ACTIONS(623), 1, - sym_name, - ACTIONS(1252), 1, + ACTIONS(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1329), 1, anon_sym_LBRACK, - ACTIONS(1499), 1, + ACTIONS(1439), 1, anon_sym_LPAREN, - ACTIONS(1772), 1, - anon_sym_DOLLAR, - STATE(653), 1, + STATE(603), 1, sym__reserved_identifier, - STATE(675), 1, - sym_qualified_name, - STATE(870), 1, + STATE(895), 1, sym_text_interpolation, - STATE(1271), 1, - sym__dereferencable_expression, - STATE(1299), 1, + STATE(1221), 1, + sym_qualified_name, + STATE(1303), 1, sym_namespace_name_as_prefix, - STATE(1868), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1344), 1, + sym__dereferencable_expression, + STATE(1919), 1, sym_relative_scope, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - ACTIONS(573), 2, + STATE(1985), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, sym_heredoc, sym_string, - STATE(1261), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(274), 3, + ACTIONS(574), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(655), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(715), 3, + STATE(1215), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(624), 4, + sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(1168), 7, - sym_parenthesized_expression, + STATE(599), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, sym_nullsafe_member_call_expression, - sym_array_creation_expression, - sym__string, - [24759] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(871), 1, - sym_text_interpolation, - ACTIONS(1426), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1424), 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, - [24807] = 5, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + [25326] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(872), 1, + STATE(896), 1, sym_text_interpolation, - ACTIONS(1262), 10, + ACTIONS(1600), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79376,7 +82082,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1260), 24, + ACTIONS(1598), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79401,91 +82107,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [24855] = 22, + [25374] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, - anon_sym_AMP, - ACTIONS(1804), 1, - anon_sym_QMARK, - ACTIONS(1806), 1, - anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(873), 1, + STATE(897), 1, sym_text_interpolation, - ACTIONS(1824), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1732), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [24937] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(874), 1, - sym_text_interpolation, - ACTIONS(1539), 10, + ACTIONS(1495), 5, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1537), 24, + ACTIONS(1493), 17, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, @@ -79498,20 +82155,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [24985] = 5, + [25434] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(875), 1, + STATE(898), 1, sym_text_interpolation, - ACTIONS(1270), 10, + ACTIONS(1691), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79522,7 +82174,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1268), 24, + ACTIONS(1689), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79547,14 +82199,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25033] = 5, + [25482] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(876), 1, + ACTIONS(1915), 1, + anon_sym_PERCENT, + STATE(899), 1, sym_text_interpolation, - ACTIONS(1632), 10, + ACTIONS(1911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1887), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1495), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79563,15 +82227,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1630), 24, + ACTIONS(1493), 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, @@ -79586,275 +82246,245 @@ 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, - [25081] = 22, + [25538] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(877), 1, + STATE(900), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1708), 6, + ACTIONS(1825), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [25163] = 5, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [25614] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(878), 1, - sym_text_interpolation, - ACTIONS(1515), 10, + ACTIONS(1881), 1, anon_sym_AMP, + ACTIONS(1883), 1, anon_sym_QMARK, + ACTIONS(1885), 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(1513), 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(1889), 1, anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, anon_sym_AMP_AMP, + ACTIONS(1901), 1, anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(1909), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(1915), 1, anon_sym_PERCENT, - [25211] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(879), 1, + STATE(901), 1, sym_text_interpolation, - ACTIONS(1445), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1887), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1443), 24, + ACTIONS(1905), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1829), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_PERCENT, - [25259] = 22, + [25690] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(880), 1, + STATE(902), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1696), 6, + ACTIONS(1795), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [25341] = 13, + [25772] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(1801), 1, + anon_sym_QMARK, + ACTIONS(1881), 1, + anon_sym_AMP, + ACTIONS(1885), 1, + anon_sym_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, + anon_sym_AMP_AMP, + ACTIONS(1901), 1, + anon_sym_CARET, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(881), 1, + STATE(903), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1439), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 13, + ACTIONS(1799), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [25405] = 5, + [25848] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(882), 1, + STATE(904), 1, sym_text_interpolation, - ACTIONS(1511), 10, + ACTIONS(1584), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79865,7 +82495,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1509), 24, + ACTIONS(1582), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79890,14 +82520,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25453] = 5, + [25896] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(883), 1, + STATE(905), 1, sym_text_interpolation, - ACTIONS(1266), 10, + ACTIONS(1530), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -79908,7 +82538,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1264), 24, + ACTIONS(1528), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -79933,112 +82563,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25501] = 15, + [25944] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1822), 1, + ACTIONS(1883), 1, + anon_sym_QMARK, + ACTIONS(1885), 1, + anon_sym_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1891), 1, + aux_sym_binary_expression_token2, + ACTIONS(1893), 1, + aux_sym_binary_expression_token3, + ACTIONS(1895), 1, + aux_sym_binary_expression_token4, + ACTIONS(1897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, + anon_sym_AMP_AMP, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(884), 1, + STATE(906), 1, sym_text_interpolation, - ACTIONS(1439), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 12, + ACTIONS(1815), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + [26026] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_AMP, + ACTIONS(1883), 1, + anon_sym_QMARK, + ACTIONS(1885), 1, + anon_sym_PIPE, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - [25569] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1836), 1, + ACTIONS(1901), 1, + anon_sym_CARET, + ACTIONS(1909), 1, + anon_sym_GT_EQ, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(885), 1, + STATE(907), 1, sym_text_interpolation, - ACTIONS(1834), 2, + ACTIONS(1903), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1439), 8, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1887), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1437), 23, + ACTIONS(1905), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1809), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [25621] = 5, + [26108] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(886), 1, + STATE(908), 1, sym_text_interpolation, - ACTIONS(1531), 10, + ACTIONS(1570), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80049,7 +82701,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1529), 24, + ACTIONS(1568), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80074,283 +82726,248 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [25669] = 19, + [26156] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1728), 1, - anon_sym_QMARK, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1806), 1, - anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(887), 1, + STATE(909), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1495), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1726), 9, + ACTIONS(1493), 12, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [25745] = 19, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [26224] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1818), 1, + ACTIONS(1891), 1, + aux_sym_binary_expression_token2, + ACTIONS(1893), 1, + aux_sym_binary_expression_token3, + ACTIONS(1895), 1, + aux_sym_binary_expression_token4, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(888), 1, + STATE(910), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 9, + ACTIONS(1811), 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, - [25821] = 21, + [26306] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1871), 1, + anon_sym_DOLLAR, + ACTIONS(1917), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym__reserved_identifier, + STATE(911), 1, + sym_text_interpolation, + STATE(1216), 1, + sym_qualified_name, + STATE(1295), 1, + sym__dereferencable_expression, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1968), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1218), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(733), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(679), 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, + [26390] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + STATE(912), 1, + sym_text_interpolation, + ACTIONS(1709), 10, anon_sym_AMP, - ACTIONS(1804), 1, anon_sym_QMARK, - ACTIONS(1806), 1, anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - aux_sym_binary_expression_token2, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(889), 1, - sym_text_interpolation, - ACTIONS(1824), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1828), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1437), 7, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1707), 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, - aux_sym_binary_expression_token3, - [25901] = 20, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1802), 1, - anon_sym_AMP, - ACTIONS(1804), 1, - anon_sym_QMARK, - ACTIONS(1806), 1, - anon_sym_PIPE, - ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, aux_sym_binary_expression_token2, - ACTIONS(1818), 1, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(890), 1, - sym_text_interpolation, - ACTIONS(1824), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1828), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1826), 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(1437), 8, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [25979] = 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [26438] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1439), 1, - anon_sym_QMARK, - ACTIONS(1802), 1, + STATE(913), 1, + sym_text_interpolation, + ACTIONS(1608), 10, anon_sym_AMP, - ACTIONS(1806), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1822), 1, - anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(891), 1, - sym_text_interpolation, - ACTIONS(1824), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1828), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1437), 12, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1606), 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, @@ -80359,161 +82976,189 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [26049] = 14, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [26486] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, - anon_sym_AMP, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(892), 1, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1576), 1, + anon_sym_LPAREN, + ACTIONS(1877), 1, + anon_sym_DOLLAR, + STATE(603), 1, + sym__reserved_identifier, + STATE(605), 1, + sym_qualified_name, + STATE(914), 1, sym_text_interpolation, - ACTIONS(1439), 2, + STATE(1298), 1, + sym_namespace_name_as_prefix, + STATE(1317), 1, + sym__dereferencable_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1995), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + STATE(1335), 2, + sym_class_constant_access_expression, + sym_cast_variable, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(614), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(660), 3, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(1215), 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, + [26570] = 20, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_AMP, + ACTIONS(1883), 1, anon_sym_QMARK, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1824), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1828), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1826), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1437), 13, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, anon_sym_AMP_AMP, + ACTIONS(1901), 1, anon_sym_CARET, - [26115] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(893), 1, + STATE(915), 1, sym_text_interpolation, - ACTIONS(1832), 2, + ACTIONS(1903), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1439), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1437), 17, + ACTIONS(1905), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1493), 8, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [26175] = 23, + [26648] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(525), 1, + ACTIONS(528), 1, sym_name, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(545), 1, + ACTIONS(548), 1, anon_sym_array, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1772), 1, + ACTIONS(578), 1, anon_sym_DOLLAR, - ACTIONS(1782), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1576), 1, anon_sym_LPAREN, - STATE(584), 1, + STATE(603), 1, sym__reserved_identifier, - STATE(894), 1, + STATE(916), 1, sym_text_interpolation, - STATE(1169), 1, + STATE(1221), 1, sym_qualified_name, - STATE(1252), 1, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1310), 1, sym__dereferencable_expression, - STATE(1261), 1, + STATE(1335), 1, sym_class_constant_access_expression, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1859), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, + STATE(1919), 1, sym_relative_scope, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - ACTIONS(573), 2, + STATE(1985), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, sym_heredoc, sym_string, - ACTIONS(571), 3, + ACTIONS(574), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(1170), 3, + STATE(1215), 3, sym_parenthesized_expression, sym_array_creation_expression, sym__string, - STATE(716), 4, + STATE(1222), 4, sym_cast_variable, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(663), 7, + STATE(1184), 7, sym_function_call_expression, sym_scoped_call_expression, sym_member_call_expression, @@ -80521,26 +83166,14 @@ static uint16_t ts_small_parse_table[] = { sym_subscript_expression, sym_dynamic_variable_name, sym_variable_name, - [26259] = 9, + [26732] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(895), 1, + STATE(917), 1, sym_text_interpolation, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1439), 8, + ACTIONS(1620), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80549,55 +83182,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1437), 18, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - [26315] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(896), 1, - sym_text_interpolation, - ACTIONS(1834), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1439), 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(1437), 20, + ACTIONS(1618), 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, @@ -80614,74 +83207,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - [26369] = 22, + anon_sym_DOT, + anon_sym_PERCENT, + [26780] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, - anon_sym_AMP, - ACTIONS(1804), 1, - anon_sym_QMARK, - ACTIONS(1806), 1, - anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(897), 1, + STATE(918), 1, sym_text_interpolation, - ACTIONS(1824), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1828), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1826), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1706), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - [26451] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(898), 1, - sym_text_interpolation, - ACTIONS(1439), 10, + ACTIONS(1495), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80690,9 +83230,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1437), 24, + ACTIONS(1493), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80716,15 +83254,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [26499] = 5, + [26832] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(899), 1, + ACTIONS(1919), 1, + aux_sym_binary_expression_token1, + STATE(919), 1, sym_text_interpolation, - ACTIONS(1507), 10, + ACTIONS(1691), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80735,7 +83274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1505), 24, + ACTIONS(1689), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80743,7 +83282,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, @@ -80760,16 +83298,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [26547] = 6, + [26882] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1786), 1, - anon_sym_STAR_STAR, - STATE(900), 1, + STATE(920), 1, sym_text_interpolation, - ACTIONS(1507), 10, + ACTIONS(1604), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80780,13 +83316,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1505), 23, + ACTIONS(1602), 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, @@ -80804,54 +83341,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [26597] = 19, + [26930] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, - anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1789), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1881), 1, + anon_sym_AMP, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(901), 1, + STATE(921), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1712), 9, + ACTIONS(1787), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -80861,126 +83398,339 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [26673] = 19, + [27006] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1877), 1, + anon_sym_DOLLAR, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym__reserved_identifier, + STATE(922), 1, + sym_text_interpolation, + STATE(1219), 1, + sym_qualified_name, + STATE(1302), 1, + sym__dereferencable_expression, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1983), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1210), 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(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, + [27090] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + STATE(923), 1, + sym_text_interpolation, + ACTIONS(1592), 10, anon_sym_AMP, - ACTIONS(1804), 1, anon_sym_QMARK, - ACTIONS(1806), 1, anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(902), 1, - sym_text_interpolation, - ACTIONS(1824), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1828), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1710), 9, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1590), 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, - [26749] = 17, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [27138] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1439), 1, + STATE(924), 1, + sym_text_interpolation, + ACTIONS(1644), 10, + anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1802), 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(1642), 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, + [27186] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1877), 1, + anon_sym_DOLLAR, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym__reserved_identifier, + STATE(925), 1, + sym_text_interpolation, + STATE(1219), 1, + sym_qualified_name, + STATE(1302), 1, + sym__dereferencable_expression, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + STATE(1983), 1, + sym__scope_resolution_qualifier, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1210), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(661), 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, + [27270] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1806), 1, + ACTIONS(1883), 1, + anon_sym_QMARK, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1820), 1, + ACTIONS(1889), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1891), 1, + aux_sym_binary_expression_token2, + ACTIONS(1893), 1, + aux_sym_binary_expression_token3, + ACTIONS(1895), 1, + aux_sym_binary_expression_token4, + ACTIONS(1897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(903), 1, + STATE(926), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 11, + ACTIONS(1622), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + [27352] = 19, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_AMP, + ACTIONS(1883), 1, + anon_sym_QMARK, + ACTIONS(1885), 1, + anon_sym_PIPE, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, + ACTIONS(1897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, + anon_sym_AMP_AMP, + ACTIONS(1901), 1, + anon_sym_CARET, + ACTIONS(1909), 1, + anon_sym_GT_EQ, + ACTIONS(1915), 1, + anon_sym_PERCENT, + STATE(927), 1, + sym_text_interpolation, + ACTIONS(1903), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1887), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1907), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1905), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1493), 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, - anon_sym_PIPE_PIPE, - [26821] = 5, + [27428] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(904), 1, + STATE(928), 1, sym_text_interpolation, - ACTIONS(1640), 10, + ACTIONS(1624), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -80991,7 +83741,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1638), 24, + ACTIONS(1622), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81016,14 +83766,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [26869] = 5, + [27476] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(905), 1, + STATE(929), 1, sym_text_interpolation, - ACTIONS(1616), 10, + ACTIONS(1632), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81034,7 +83784,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1614), 24, + ACTIONS(1630), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81059,14 +83809,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [26917] = 5, + [27524] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(906), 1, + STATE(930), 1, sym_text_interpolation, - ACTIONS(1563), 10, + ACTIONS(1636), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81077,7 +83827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1561), 24, + ACTIONS(1634), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81102,316 +83852,194 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [26965] = 22, + [27572] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(907), 1, + STATE(931), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1684), 6, + ACTIONS(1821), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [27047] = 22, + [27654] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(908), 1, + STATE(932), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1724), 6, + ACTIONS(1831), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [27129] = 22, + [27736] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(909), 1, + STATE(933), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1722), 6, + ACTIONS(1823), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [27211] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1499), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym__reserved_identifier, - STATE(910), 1, - sym_text_interpolation, - STATE(1178), 1, - sym_qualified_name, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1266), 1, - sym__dereferencable_expression, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1863), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - ACTIONS(571), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1168), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(1173), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1139), 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, - [27295] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(278), 1, - anon_sym_DOLLAR, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1840), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym__reserved_identifier, - STATE(911), 1, - sym_text_interpolation, - STATE(1174), 1, - sym_qualified_name, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1301), 1, - sym__dereferencable_expression, - STATE(1876), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - ACTIONS(571), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1175), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(685), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(648), 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, - [27379] = 5, + [27818] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(912), 1, + STATE(934), 1, sym_text_interpolation, - ACTIONS(1503), 10, + ACTIONS(1580), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81422,7 +84050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1501), 24, + ACTIONS(1578), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81447,128 +84075,178 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27427] = 19, + [27866] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1702), 1, - anon_sym_QMARK, - ACTIONS(1802), 1, + STATE(935), 1, + sym_text_interpolation, + ACTIONS(1612), 10, anon_sym_AMP, - ACTIONS(1806), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(913), 1, - sym_text_interpolation, - ACTIONS(1824), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1828), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1700), 9, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1610), 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, - [27503] = 19, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [27914] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1818), 1, + ACTIONS(1891), 1, + aux_sym_binary_expression_token2, + ACTIONS(1893), 1, + aux_sym_binary_expression_token3, + ACTIONS(1895), 1, + aux_sym_binary_expression_token4, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(914), 1, + STATE(936), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1698), 9, + 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, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [27579] = 5, + [27996] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(281), 1, + anon_sym_DOLLAR, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(548), 1, + anon_sym_array, + ACTIONS(592), 1, sym_comment, - STATE(915), 1, + ACTIONS(1329), 1, + anon_sym_LBRACK, + ACTIONS(1923), 1, + anon_sym_LPAREN, + STATE(603), 1, + sym__reserved_identifier, + STATE(937), 1, + sym_text_interpolation, + STATE(1217), 1, + sym_qualified_name, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1318), 1, + sym__dereferencable_expression, + STATE(1335), 1, + sym_class_constant_access_expression, + STATE(1917), 1, + sym__scope_resolution_qualifier, + STATE(1919), 1, + sym_relative_scope, + STATE(1957), 1, + sym_namespace_name, + ACTIONS(576), 2, + sym_heredoc, + sym_string, + ACTIONS(574), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(1208), 3, + sym_parenthesized_expression, + sym_array_creation_expression, + sym__string, + STATE(691), 4, + sym_cast_variable, + sym_member_access_expression, + sym_nullsafe_member_access_expression, + sym_scoped_property_access_expression, + STATE(658), 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, + [28080] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(938), 1, sym_text_interpolation, - ACTIONS(1543), 10, + ACTIONS(1713), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81579,7 +84257,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1541), 24, + ACTIONS(1711), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81604,14 +84282,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27627] = 5, + [28128] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(916), 1, + ACTIONS(1925), 1, + anon_sym_STAR_STAR, + STATE(939), 1, sym_text_interpolation, - ACTIONS(1547), 10, + ACTIONS(1604), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81622,14 +84302,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1545), 24, + ACTIONS(1602), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -81647,14 +84326,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27675] = 5, + [28178] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(917), 1, + STATE(940), 1, sym_text_interpolation, - ACTIONS(1551), 10, + ACTIONS(1596), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81665,7 +84344,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1549), 24, + ACTIONS(1594), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81690,134 +84369,114 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27723] = 22, + [28226] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + STATE(941), 1, + sym_text_interpolation, + ACTIONS(1683), 10, anon_sym_AMP, - ACTIONS(1804), 1, anon_sym_QMARK, - ACTIONS(1806), 1, anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1836), 1, - anon_sym_PERCENT, - STATE(918), 1, - sym_text_interpolation, - ACTIONS(1824), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1834), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1808), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1828), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1680), 6, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1681), 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, - [27805] = 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, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [28274] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(919), 1, + STATE(942), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1704), 6, + ACTIONS(1733), 9, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [27887] = 5, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [28350] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(920), 1, + STATE(943), 1, sym_text_interpolation, - ACTIONS(1523), 10, + ACTIONS(900), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81828,7 +84487,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1521), 24, + ACTIONS(898), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -81853,14 +84512,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27935] = 5, + [28398] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(921), 1, + ACTIONS(1925), 1, + anon_sym_STAR_STAR, + STATE(944), 1, sym_text_interpolation, - ACTIONS(1628), 10, + ACTIONS(1580), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -81871,14 +84532,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1626), 24, + ACTIONS(1578), 23, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR_STAR, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -81896,279 +84556,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [27983] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(1842), 1, - anon_sym_LPAREN, - STATE(584), 1, - sym__reserved_identifier, - STATE(922), 1, - sym_text_interpolation, - STATE(1166), 1, - sym_qualified_name, - STATE(1257), 1, - sym__dereferencable_expression, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - STATE(1947), 1, - sym__scope_resolution_qualifier, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - ACTIONS(571), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(1164), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(646), 4, - sym_cast_variable, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(591), 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, - [28067] = 5, + [28448] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(923), 1, - sym_text_interpolation, - ACTIONS(1527), 10, + ACTIONS(1881), 1, anon_sym_AMP, + ACTIONS(1883), 1, anon_sym_QMARK, + ACTIONS(1885), 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(1525), 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(1889), 1, anon_sym_QMARK_QMARK, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, anon_sym_AMP_AMP, + ACTIONS(1901), 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, - [28115] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(545), 1, - anon_sym_array, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1499), 1, - anon_sym_LPAREN, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - STATE(584), 1, - sym__reserved_identifier, - STATE(602), 1, - sym_qualified_name, - STATE(924), 1, - sym_text_interpolation, - STATE(1268), 1, - sym__dereferencable_expression, - STATE(1284), 1, - sym_namespace_name_as_prefix, - STATE(1875), 1, - sym__scope_resolution_qualifier, - STATE(1897), 1, - sym_relative_scope, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(573), 2, - sym_heredoc, - sym_string, - STATE(1261), 2, - sym_class_constant_access_expression, - sym_cast_variable, - ACTIONS(571), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - STATE(610), 3, - sym_subscript_expression, - sym_dynamic_variable_name, - sym_variable_name, - STATE(640), 3, - sym_member_access_expression, - sym_nullsafe_member_access_expression, - sym_scoped_property_access_expression, - STATE(1168), 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, - [28199] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1720), 1, - anon_sym_QMARK, - ACTIONS(1802), 1, - anon_sym_AMP, - ACTIONS(1806), 1, - anon_sym_PIPE, - ACTIONS(1810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1818), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, - anon_sym_AMP_AMP, - ACTIONS(1822), 1, - anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1836), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(925), 1, + STATE(945), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1834), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1718), 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, - [28275] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(926), 1, - sym_text_interpolation, - ACTIONS(1620), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 24, + ACTIONS(1493), 7, 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, - [28323] = 5, + [28528] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(927), 1, + STATE(946), 1, sym_text_interpolation, - ACTIONS(1579), 10, + ACTIONS(1512), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82179,7 +84633,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1577), 24, + ACTIONS(1510), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82204,75 +84658,136 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28371] = 23, + [28576] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(545), 1, + ACTIONS(548), 1, anon_sym_array, - ACTIONS(1252), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(628), 1, + sym_name, + ACTIONS(1329), 1, anon_sym_LBRACK, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(1842), 1, + ACTIONS(1576), 1, anon_sym_LPAREN, - STATE(584), 1, + ACTIONS(1871), 1, + anon_sym_DOLLAR, + STATE(676), 1, + sym_qualified_name, + STATE(688), 1, sym__reserved_identifier, - STATE(928), 1, + STATE(947), 1, sym_text_interpolation, - STATE(1166), 1, - sym_qualified_name, - STATE(1257), 1, + STATE(1301), 1, sym__dereferencable_expression, - STATE(1261), 1, - sym_class_constant_access_expression, - STATE(1269), 1, + STATE(1311), 1, sym_namespace_name_as_prefix, - STATE(1897), 1, + STATE(1919), 1, sym_relative_scope, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - STATE(1947), 1, + STATE(1988), 1, sym__scope_resolution_qualifier, - ACTIONS(573), 2, + ACTIONS(576), 2, sym_heredoc, sym_string, - ACTIONS(571), 3, + STATE(1335), 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(1164), 3, - sym_parenthesized_expression, - sym_array_creation_expression, - sym__string, - STATE(649), 4, - sym_cast_variable, + STATE(686), 3, + sym_subscript_expression, + sym_dynamic_variable_name, + sym_variable_name, + STATE(735), 3, sym_member_access_expression, sym_nullsafe_member_access_expression, sym_scoped_property_access_expression, - STATE(595), 7, + STATE(1215), 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, - [28455] = 5, + sym_array_creation_expression, + sym__string, + [28660] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(929), 1, + ACTIONS(1881), 1, + anon_sym_AMP, + ACTIONS(1883), 1, + anon_sym_QMARK, + ACTIONS(1885), 1, + anon_sym_PIPE, + ACTIONS(1889), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1891), 1, + aux_sym_binary_expression_token2, + ACTIONS(1893), 1, + aux_sym_binary_expression_token3, + ACTIONS(1895), 1, + aux_sym_binary_expression_token4, + ACTIONS(1897), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1899), 1, + anon_sym_AMP_AMP, + ACTIONS(1901), 1, + anon_sym_CARET, + ACTIONS(1909), 1, + anon_sym_GT_EQ, + ACTIONS(1915), 1, + anon_sym_PERCENT, + ACTIONS(1927), 1, + anon_sym_EQ_GT, + STATE(948), 1, sym_text_interpolation, - ACTIONS(1636), 10, + ACTIONS(1903), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1913), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1887), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1907), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1905), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1707), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [28744] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(949), 1, + sym_text_interpolation, + ACTIONS(1687), 10, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -82283,7 +84798,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1634), 24, + ACTIONS(1685), 24, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, @@ -82308,865 +84823,736 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_PERCENT, - [28503] = 24, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1788), 1, - sym_name, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1796), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1798), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(1844), 1, - anon_sym_COMMA, - ACTIONS(1846), 1, - anon_sym_RPAREN, - STATE(930), 1, - sym_text_interpolation, - STATE(1225), 1, - sym_qualified_name, - STATE(1242), 1, - sym_union_type, - STATE(1254), 1, - sym__types, - STATE(1265), 1, - sym_namespace_name_as_prefix, - STATE(1321), 1, - sym__reserved_identifier, - STATE(1401), 1, - sym__type, - STATE(1429), 1, - sym_variable_name, - STATE(1907), 1, - sym_namespace_name, - STATE(1226), 2, - sym_optional_type, - sym_primitive_type, - STATE(1553), 2, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1479), 10, - 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_false, - anon_sym_null, - [28589] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1788), 1, - sym_name, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1796), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1798), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(1848), 1, - anon_sym_RPAREN, - STATE(931), 1, - sym_text_interpolation, - STATE(1225), 1, - sym_qualified_name, - STATE(1242), 1, - sym_union_type, - STATE(1254), 1, - sym__types, - STATE(1265), 1, - sym_namespace_name_as_prefix, - STATE(1321), 1, - sym__reserved_identifier, - STATE(1401), 1, - sym__type, - STATE(1429), 1, - sym_variable_name, - STATE(1907), 1, - sym_namespace_name, - STATE(1226), 2, - sym_optional_type, - sym_primitive_type, - STATE(1638), 2, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1479), 10, - 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_false, - anon_sym_null, - [28672] = 22, + [28792] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1878), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1884), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(932), 1, + STATE(950), 1, sym_text_interpolation, - ACTIONS(1872), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1696), 5, + ACTIONS(1765), 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, - [28753] = 22, + [28874] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1878), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1884), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(933), 1, + STATE(951), 1, sym_text_interpolation, - ACTIONS(1872), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1692), 5, + ACTIONS(1781), 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, - [28834] = 22, + [28956] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1878), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1884), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(934), 1, + STATE(952), 1, sym_text_interpolation, - ACTIONS(1872), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1690), 5, + ACTIONS(1779), 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, - [28915] = 22, + [29038] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1878), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1884), 1, + ACTIONS(1915), 1, anon_sym_PERCENT, - STATE(935), 1, + STATE(953), 1, sym_text_interpolation, - ACTIONS(1872), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1913), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1688), 5, + ACTIONS(1777), 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, - [28996] = 22, + [29120] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + STATE(954), 1, + sym_text_interpolation, + ACTIONS(1343), 10, anon_sym_AMP, - ACTIONS(1852), 1, anon_sym_QMARK, - ACTIONS(1854), 1, anon_sym_PIPE, - ACTIONS(1858), 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(1341), 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(1860), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1878), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1884), 1, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, anon_sym_PERCENT, - STATE(936), 1, + [29168] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + STATE(955), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1686), 5, + ACTIONS(1495), 5, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1493), 16, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29077] = 19, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_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, + [29227] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1728), 1, - anon_sym_QMARK, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1854), 1, + ACTIONS(1943), 1, + anon_sym_QMARK, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1866), 1, + ACTIONS(1949), 1, + aux_sym_binary_expression_token2, + ACTIONS(1951), 1, + aux_sym_binary_expression_token3, + ACTIONS(1953), 1, + aux_sym_binary_expression_token4, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(937), 1, + STATE(956), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1726), 8, + ACTIONS(1781), 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, - [29152] = 22, + [29308] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, - anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1801), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, - aux_sym_binary_expression_token2, - ACTIONS(1862), 1, - aux_sym_binary_expression_token3, - ACTIONS(1864), 1, - aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(938), 1, + STATE(957), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1694), 5, + ACTIONS(1799), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29233] = 22, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [29383] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(939), 1, + STATE(958), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1610), 5, + ACTIONS(1765), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29314] = 22, + [29464] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(940), 1, + STATE(959), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1716), 5, + ACTIONS(1777), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29395] = 6, + [29545] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_STAR_STAR, - STATE(941), 1, - sym_text_interpolation, - ACTIONS(1555), 10, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1553), 22, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + ACTIONS(1933), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, + ACTIONS(1939), 1, anon_sym_PERCENT, - [29444] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1850), 1, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(942), 1, + STATE(960), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1682), 5, + ACTIONS(1815), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29525] = 22, + [29626] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(943), 1, + STATE(961), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1732), 5, + ACTIONS(1821), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29606] = 19, + [29707] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(944), 1, + STATE(962), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 8, + ACTIONS(1825), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -83175,459 +85561,409 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [29681] = 22, + [29782] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(945), 1, + STATE(963), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1724), 5, + ACTIONS(1793), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29762] = 22, + [29863] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, - aux_sym_binary_expression_token2, - ACTIONS(1862), 1, - aux_sym_binary_expression_token3, - ACTIONS(1864), 1, - aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(946), 1, + STATE(964), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1722), 5, + ACTIONS(1733), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [29843] = 23, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [29938] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - ACTIONS(1888), 1, - anon_sym_EQ_GT, - STATE(947), 1, + STATE(965), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1618), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - aux_sym_binary_expression_token1, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [29926] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1788), 1, - sym_name, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1796), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1798), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(1890), 1, + ACTIONS(1622), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_RPAREN, - STATE(948), 1, - sym_text_interpolation, - STATE(1225), 1, - sym_qualified_name, - STATE(1242), 1, - sym_union_type, - STATE(1254), 1, - sym__types, - STATE(1265), 1, - sym_namespace_name_as_prefix, - STATE(1321), 1, - sym__reserved_identifier, - STATE(1401), 1, - sym__type, - STATE(1429), 1, - sym_variable_name, - STATE(1907), 1, - sym_namespace_name, - STATE(1226), 2, - sym_optional_type, - sym_primitive_type, - STATE(1638), 2, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1479), 10, - 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_false, - anon_sym_null, - [30009] = 21, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [30019] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1965), 1, + anon_sym_STAR_STAR, + STATE(966), 1, + sym_text_interpolation, + ACTIONS(1604), 10, anon_sym_AMP, - ACTIONS(1852), 1, anon_sym_QMARK, - ACTIONS(1854), 1, anon_sym_PIPE, - ACTIONS(1858), 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(1602), 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(1860), 1, aux_sym_binary_expression_token2, - ACTIONS(1864), 1, + aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, anon_sym_CARET, - ACTIONS(1878), 1, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(949), 1, - sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + anon_sym_LT_EQ_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + anon_sym_DOT, + anon_sym_PERCENT, + [30068] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1939), 1, + anon_sym_PERCENT, + STATE(967), 1, + sym_text_interpolation, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1495), 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(1874), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1437), 6, + ACTIONS(1493), 19, 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, - [30088] = 20, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30121] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1866), 1, + ACTIONS(1951), 1, + aux_sym_binary_expression_token3, + ACTIONS(1953), 1, + aux_sym_binary_expression_token4, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(950), 1, + STATE(968), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 7, + ACTIONS(1775), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - [30165] = 17, + [30202] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1439), 1, + ACTIONS(1805), 1, anon_sym_QMARK, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1868), 1, + ACTIONS(1947), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(951), 1, + STATE(969), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 10, + ACTIONS(1803), 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, - [30236] = 16, + [30277] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1439), 1, - anon_sym_QMARK, - ACTIONS(1850), 1, + ACTIONS(1965), 1, + anon_sym_STAR_STAR, + STATE(970), 1, + sym_text_interpolation, + ACTIONS(1580), 10, anon_sym_AMP, - ACTIONS(1854), 1, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(1870), 1, - anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(952), 1, - sym_text_interpolation, - ACTIONS(1872), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1880), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1882), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1856), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1876), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1437), 11, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1578), 22, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, - anon_sym_STAR_STAR, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_binary_expression_token1, anon_sym_QMARK_QMARK, aux_sym_binary_expression_token2, @@ -83635,661 +85971,574 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [30305] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1788), 1, - sym_name, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1796), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1798), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(1892), 1, - anon_sym_RPAREN, - STATE(953), 1, - sym_text_interpolation, - STATE(1225), 1, - sym_qualified_name, - STATE(1242), 1, - sym_union_type, - STATE(1254), 1, - sym__types, - STATE(1265), 1, - sym_namespace_name_as_prefix, - STATE(1321), 1, - sym__reserved_identifier, - STATE(1401), 1, - sym__type, - STATE(1429), 1, - sym_variable_name, - STATE(1907), 1, - sym_namespace_name, - STATE(1226), 2, - sym_optional_type, - sym_primitive_type, - STATE(1638), 2, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1479), 10, - 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_false, - anon_sym_null, - [30388] = 13, + anon_sym_CARET, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_PERCENT, + [30326] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1878), 1, + ACTIONS(1933), 1, anon_sym_GT_EQ, - ACTIONS(1884), 1, + ACTIONS(1939), 1, anon_sym_PERCENT, - STATE(954), 1, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1943), 1, + anon_sym_QMARK, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1949), 1, + aux_sym_binary_expression_token2, + ACTIONS(1951), 1, + aux_sym_binary_expression_token3, + ACTIONS(1953), 1, + aux_sym_binary_expression_token4, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1967), 1, + anon_sym_EQ_GT, + STATE(971), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1439), 3, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1437), 12, + ACTIONS(1707), 4, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + ACTIONS(1963), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [30409] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1943), 1, + anon_sym_QMARK, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, anon_sym_AMP_AMP, + ACTIONS(1959), 1, anon_sym_CARET, - [30451] = 14, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1850), 1, - anon_sym_AMP, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(955), 1, + STATE(972), 1, sym_text_interpolation, - ACTIONS(1439), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 12, + ACTIONS(1831), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - anon_sym_QMARK_QMARK, - aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [30516] = 19, + [30490] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1866), 1, + ACTIONS(1949), 1, + aux_sym_binary_expression_token2, + ACTIONS(1951), 1, + aux_sym_binary_expression_token3, + ACTIONS(1953), 1, + aux_sym_binary_expression_token4, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(956), 1, + STATE(973), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1698), 8, + ACTIONS(1813), 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, - [30591] = 23, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1788), 1, - sym_name, - ACTIONS(1792), 1, - anon_sym_AMP, - ACTIONS(1796), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1798), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(1894), 1, - anon_sym_RPAREN, - STATE(957), 1, - sym_text_interpolation, - STATE(1225), 1, - sym_qualified_name, - STATE(1242), 1, - sym_union_type, - STATE(1254), 1, - sym__types, - STATE(1265), 1, - sym_namespace_name_as_prefix, - STATE(1321), 1, - sym__reserved_identifier, - STATE(1401), 1, - sym__type, - STATE(1429), 1, - sym_variable_name, - STATE(1907), 1, - sym_namespace_name, - STATE(1226), 2, - sym_optional_type, - sym_primitive_type, - STATE(1638), 2, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1479), 10, - 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_false, - anon_sym_null, - [30674] = 22, + [30571] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(958), 1, + STATE(974), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1730), 5, + ACTIONS(1823), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [30755] = 22, + [30652] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, - anon_sym_AMP, - ACTIONS(1852), 1, - anon_sym_QMARK, - ACTIONS(1854), 1, - anon_sym_PIPE, - ACTIONS(1858), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, - aux_sym_binary_expression_token2, - ACTIONS(1862), 1, - aux_sym_binary_expression_token3, - ACTIONS(1864), 1, - aux_sym_binary_expression_token4, - ACTIONS(1866), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, - anon_sym_AMP_AMP, - ACTIONS(1870), 1, - anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, + ACTIONS(1939), 1, anon_sym_PERCENT, - STATE(959), 1, + STATE(975), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1495), 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(1874), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(1708), 5, + ACTIONS(1493), 17, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [30836] = 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, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + [30707] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(960), 1, + STATE(976), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1706), 5, + ACTIONS(1779), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [30917] = 19, + [30788] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1720), 1, - anon_sym_QMARK, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1854), 1, + ACTIONS(1943), 1, + anon_sym_QMARK, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1866), 1, + ACTIONS(1949), 1, + aux_sym_binary_expression_token2, + ACTIONS(1951), 1, + aux_sym_binary_expression_token3, + ACTIONS(1953), 1, + aux_sym_binary_expression_token4, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(961), 1, + STATE(977), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1718), 8, + ACTIONS(1795), 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, - [30992] = 22, + [30869] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, - aux_sym_binary_expression_token2, - ACTIONS(1862), 1, - aux_sym_binary_expression_token3, - ACTIONS(1864), 1, - aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(962), 1, + STATE(978), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1704), 5, + ACTIONS(1829), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [31073] = 22, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + [30944] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(963), 1, + STATE(979), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1680), 5, + ACTIONS(1791), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [31154] = 7, + [31025] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1884), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, anon_sym_PERCENT, - STATE(964), 1, - sym_text_interpolation, - ACTIONS(1882), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1439), 8, + ACTIONS(1941), 1, anon_sym_AMP, + STATE(980), 1, + sym_text_interpolation, + ACTIONS(1495), 2, anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(1935), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1929), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1437), 22, + ACTIONS(1963), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1493), 12, 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, @@ -84299,285 +86548,450 @@ 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, + [31090] = 16, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1495), 1, + anon_sym_QMARK, + ACTIONS(1933), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(1959), 1, + anon_sym_CARET, + STATE(981), 1, + sym_text_interpolation, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(1937), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_DOT, - [31205] = 19, + ACTIONS(1931), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1963), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1493), 11, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [31159] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1702), 1, + ACTIONS(1495), 1, anon_sym_QMARK, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1866), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(965), 1, + STATE(982), 1, sym_text_interpolation, - ACTIONS(1872), 2, + ACTIONS(1935), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1929), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1931), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1963), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1493), 10, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + anon_sym_QMARK_QMARK, + aux_sym_binary_expression_token2, + aux_sym_binary_expression_token3, + aux_sym_binary_expression_token4, + anon_sym_PIPE_PIPE, + [31230] = 20, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1943), 1, + anon_sym_QMARK, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1949), 1, + aux_sym_binary_expression_token2, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_CARET, + STATE(983), 1, + sym_text_interpolation, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1700), 8, + ACTIONS(1493), 7, 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, - [31280] = 22, + [31307] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(966), 1, + STATE(984), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1684), 5, + ACTIONS(1811), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, - [31361] = 19, + [31388] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1866), 1, + ACTIONS(1949), 1, + aux_sym_binary_expression_token2, + ACTIONS(1951), 1, + aux_sym_binary_expression_token3, + ACTIONS(1953), 1, + aux_sym_binary_expression_token4, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(967), 1, + STATE(985), 1, sym_text_interpolation, - ACTIONS(1872), 2, + ACTIONS(1935), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1929), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1931), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1963), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1809), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [31469] = 21, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1943), 1, + anon_sym_QMARK, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1949), 1, + aux_sym_binary_expression_token2, + ACTIONS(1953), 1, + aux_sym_binary_expression_token4, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_CARET, + STATE(986), 1, + sym_text_interpolation, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1710), 8, + ACTIONS(1493), 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, - [31436] = 15, + [31548] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, - anon_sym_AMP, - ACTIONS(1870), 1, - anon_sym_CARET, - ACTIONS(1878), 1, + ACTIONS(1933), 1, anon_sym_GT_EQ, - ACTIONS(1884), 1, + ACTIONS(1939), 1, anon_sym_PERCENT, - STATE(968), 1, - sym_text_interpolation, - ACTIONS(1439), 2, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1943), 1, anon_sym_QMARK, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1947), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_CARET, + STATE(987), 1, + sym_text_interpolation, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1437), 11, + ACTIONS(1493), 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, - [31503] = 19, + [31623] = 19, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, - anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1789), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1884), 1, - anon_sym_PERCENT, - STATE(969), 1, + STATE(988), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - ACTIONS(1712), 8, + ACTIONS(1787), 8, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -84586,16 +87000,19 @@ static uint16_t ts_small_parse_table[] = { aux_sym_binary_expression_token2, aux_sym_binary_expression_token3, aux_sym_binary_expression_token4, - [31578] = 6, + [31698] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_STAR_STAR, - STATE(970), 1, + ACTIONS(1939), 1, + anon_sym_PERCENT, + STATE(989), 1, sym_text_interpolation, - ACTIONS(1507), 10, + ACTIONS(1937), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1495), 8, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, @@ -84604,14 +87021,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(1505), 22, + ACTIONS(1493), 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, @@ -84628,33 +87044,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_PERCENT, - [31627] = 8, + [31749] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1884), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, anon_sym_PERCENT, - STATE(971), 1, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1943), 1, + anon_sym_QMARK, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1949), 1, + aux_sym_binary_expression_token2, + ACTIONS(1951), 1, + aux_sym_binary_expression_token3, + ACTIONS(1953), 1, + aux_sym_binary_expression_token4, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_CARET, + STATE(990), 1, sym_text_interpolation, - ACTIONS(1882), 2, + ACTIONS(1935), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1439), 8, + ACTIONS(1931), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1963), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1817), 5, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + aux_sym_binary_expression_token1, + [31830] = 15, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, + anon_sym_PERCENT, + ACTIONS(1941), 1, anon_sym_AMP, + ACTIONS(1959), 1, + anon_sym_CARET, + STATE(991), 1, + sym_text_interpolation, + ACTIONS(1495), 2, anon_sym_QMARK, anon_sym_PIPE, + ACTIONS(1935), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1937), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1929), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1437), 19, + ACTIONS(1963), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1493), 11, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -84666,43 +87155,44 @@ 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - [31680] = 9, + [31897] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1884), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1939), 1, anon_sym_PERCENT, - STATE(972), 1, + STATE(992), 1, sym_text_interpolation, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1439), 8, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1495), 3, anon_sym_AMP, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1929), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1437), 17, + ACTIONS(1963), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1493), 12, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, @@ -84715,107 +87205,152 @@ 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, - [31735] = 11, + [31960] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1878), 1, + ACTIONS(1933), 1, anon_sym_GT_EQ, - ACTIONS(1884), 1, + ACTIONS(1939), 1, anon_sym_PERCENT, - STATE(973), 1, + ACTIONS(1941), 1, + anon_sym_AMP, + ACTIONS(1943), 1, + anon_sym_QMARK, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1949), 1, + aux_sym_binary_expression_token2, + ACTIONS(1951), 1, + aux_sym_binary_expression_token3, + ACTIONS(1953), 1, + aux_sym_binary_expression_token4, + ACTIONS(1955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1957), 1, + anon_sym_AMP_AMP, + ACTIONS(1959), 1, + anon_sym_CARET, + STATE(993), 1, sym_text_interpolation, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1882), 2, + ACTIONS(1937), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1439), 5, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1437), 16, + ACTIONS(1963), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(1785), 5, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_STAR_STAR, aux_sym_binary_expression_token1, + [32041] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1833), 1, + anon_sym_AMP, + ACTIONS(1835), 1, + anon_sym_QMARK, + ACTIONS(1837), 1, + anon_sym_PIPE, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - aux_sym_binary_expression_token3, - aux_sym_binary_expression_token4, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, + ACTIONS(1847), 1, anon_sym_AMP_AMP, + ACTIONS(1849), 1, anon_sym_CARET, + ACTIONS(1857), 1, + anon_sym_GT_EQ, + ACTIONS(1861), 1, + anon_sym_SLASH, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + ACTIONS(1969), 1, + anon_sym_EQ_GT, + STATE(994), 1, + sym_text_interpolation, + ACTIONS(1707), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1859), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1863), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1839), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1855), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [31794] = 22, + [32122] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(196), 1, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + STATE(995), 1, + sym_text_interpolation, + STATE(1001), 1, + aux_sym_attribute_list_repeat2, + ACTIONS(1973), 4, anon_sym_BSLASH, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(1788), 1, - sym_name, - ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1796), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1798), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, anon_sym_DOLLAR, - STATE(974), 1, - sym_text_interpolation, - STATE(1225), 1, - sym_qualified_name, - STATE(1242), 1, - sym_union_type, - STATE(1254), 1, - sym__types, - STATE(1265), 1, - sym_namespace_name_as_prefix, - STATE(1321), 1, - sym__reserved_identifier, - STATE(1401), 1, - sym__type, - STATE(1429), 1, - sym_variable_name, - STATE(1907), 1, - sym_namespace_name, - STATE(1226), 2, - sym_optional_type, - sym_primitive_type, - STATE(1638), 2, - sym_simple_parameter, - sym_variadic_parameter, - ACTIONS(1481), 3, + ACTIONS(1971), 25, aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1479), 10, + 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, + 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, @@ -84826,723 +87361,685 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_false, anon_sym_null, - [31874] = 22, + anon_sym_self, + anon_sym_parent, + sym_name, + [32171] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1834), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - STATE(975), 1, + STATE(996), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1896), 3, + ACTIONS(1975), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [31953] = 24, + [32250] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1766), 1, + ACTIONS(1861), 1, anon_sym_SLASH, - ACTIONS(1898), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + ACTIONS(1977), 1, anon_sym_COMMA, - ACTIONS(1900), 1, + ACTIONS(1979), 1, anon_sym_EQ_GT, - STATE(976), 1, + STATE(997), 1, sym_text_interpolation, - STATE(1453), 1, + STATE(1691), 1, aux_sym_match_condition_list_repeat1, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1768), 2, + ACTIONS(1863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32036] = 23, + [32333] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1834), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - ACTIONS(1904), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - STATE(977), 1, + STATE(998), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1902), 2, + ACTIONS(1981), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32117] = 22, + [32414] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1834), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - STATE(978), 1, + STATE(999), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1906), 3, + ACTIONS(1985), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32196] = 23, + [32493] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1834), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - ACTIONS(1904), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - STATE(979), 1, + STATE(1000), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1908), 2, + ACTIONS(1987), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32277] = 22, + [32574] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1993), 1, + anon_sym_POUND_LBRACK, + STATE(1001), 2, + sym_text_interpolation, + aux_sym_attribute_list_repeat2, + ACTIONS(1991), 4, + anon_sym_BSLASH, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + ACTIONS(1989), 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, + 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_false, + anon_sym_null, + anon_sym_self, + anon_sym_parent, + sym_name, + [32621] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1834), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - STATE(980), 1, + STATE(1002), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1910), 3, + ACTIONS(1996), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32356] = 23, + [32700] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1748), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1762), 1, - anon_sym_GT_EQ, - ACTIONS(1766), 1, - anon_sym_SLASH, - ACTIONS(1912), 1, - anon_sym_EQ_GT, - STATE(981), 1, + STATE(1003), 1, sym_text_interpolation, - ACTIONS(1618), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1768), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1740), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1998), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32437] = 23, + [32778] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - ACTIONS(1914), 1, - anon_sym_EQ_GT, - ACTIONS(1916), 1, - anon_sym_RPAREN, - STATE(982), 1, + STATE(1004), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(2000), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32517] = 22, + [32856] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1850), 1, + STATE(1005), 1, + sym_text_interpolation, + ACTIONS(2004), 5, + anon_sym_BSLASH, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLAR, + ACTIONS(2002), 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, + 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_false, + anon_sym_null, + anon_sym_self, + anon_sym_parent, + sym_name, + [32900] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, - aux_sym_binary_expression_token2, - ACTIONS(1862), 1, - aux_sym_binary_expression_token3, - ACTIONS(1864), 1, - aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1878), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1882), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(983), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2006), 1, + anon_sym_EQ_GT, + ACTIONS(2008), 1, + anon_sym_RPAREN, + STATE(1006), 1, sym_text_interpolation, - ACTIONS(1872), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1884), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1918), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1856), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32595] = 23, + [32980] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_GT_EQ, - ACTIONS(1676), 1, - anon_sym_SLASH, - ACTIONS(1914), 1, - anon_sym_EQ_GT, - ACTIONS(1920), 1, - anon_sym_RPAREN, - STATE(984), 1, + STATE(1007), 1, sym_text_interpolation, - ACTIONS(1666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1670), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1668), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [32675] = 22, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1850), 1, - anon_sym_AMP, - ACTIONS(1852), 1, - anon_sym_QMARK, - ACTIONS(1854), 1, - anon_sym_PIPE, - ACTIONS(1858), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, - aux_sym_binary_expression_token2, - ACTIONS(1862), 1, - aux_sym_binary_expression_token3, - ACTIONS(1864), 1, - aux_sym_binary_expression_token4, - ACTIONS(1866), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, - anon_sym_AMP_AMP, - ACTIONS(1870), 1, - anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1882), 1, - anon_sym_SLASH, - STATE(985), 1, - sym_text_interpolation, - ACTIONS(1872), 2, + ACTIONS(1961), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1880), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1884), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1922), 2, + ACTIONS(2010), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1856), 3, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32753] = 22, + [33058] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1850), 1, - anon_sym_AMP, - ACTIONS(1852), 1, - anon_sym_QMARK, - ACTIONS(1854), 1, - anon_sym_PIPE, - ACTIONS(1858), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, - aux_sym_binary_expression_token2, - ACTIONS(1862), 1, - aux_sym_binary_expression_token3, - ACTIONS(1864), 1, - aux_sym_binary_expression_token4, - ACTIONS(1866), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, - anon_sym_AMP_AMP, - ACTIONS(1870), 1, - anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1882), 1, - anon_sym_SLASH, - STATE(986), 1, + STATE(1008), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1884), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1924), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1856), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1876), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - ACTIONS(1874), 4, - anon_sym_LT_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ_GT, - [32831] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1928), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(1936), 1, - sym_var_modifier, - STATE(1068), 1, - sym__modifier, - ACTIONS(1931), 2, + ACTIONS(2014), 5, anon_sym_BSLASH, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_POUND_LBRACK, anon_sym_DOLLAR, - ACTIONS(1933), 2, + ACTIONS(2012), 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, - STATE(987), 2, - sym_text_interpolation, - aux_sym_property_declaration_repeat1, - ACTIONS(1939), 3, + sym_var_modifier, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - STATE(1069), 3, - sym_class_modifier, - sym_static_modifier, - sym_visibility_modifier, - ACTIONS(1926), 16, - aux_sym_namespace_definition_token1, - aux_sym_namespace_use_declaration_token2, anon_sym_QMARK, anon_sym_array, anon_sym_callable, @@ -85557,4100 +88054,4940 @@ static uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [32887] = 22, + [33102] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1834), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - STATE(988), 1, + STATE(1009), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1942), 2, + ACTIONS(2016), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [32965] = 23, + [33180] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1748), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1762), 1, - anon_sym_GT_EQ, - ACTIONS(1766), 1, - anon_sym_SLASH, - ACTIONS(1908), 1, - anon_sym_SEMI, - ACTIONS(1944), 1, - anon_sym_COMMA, - STATE(989), 1, + STATE(1010), 1, sym_text_interpolation, - ACTIONS(1756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1768), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1740), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2018), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33045] = 23, + [33258] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1861), 1, anon_sym_SLASH, - ACTIONS(1914), 1, - anon_sym_EQ_GT, - ACTIONS(1946), 1, - anon_sym_RPAREN, - STATE(990), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + ACTIONS(1987), 1, + anon_sym_SEMI, + ACTIONS(2020), 1, + anon_sym_COMMA, + STATE(1011), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33125] = 22, + [33338] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, - aux_sym_binary_expression_token2, - ACTIONS(1862), 1, - aux_sym_binary_expression_token3, - ACTIONS(1864), 1, - aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1878), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1882), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(991), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2006), 1, + anon_sym_EQ_GT, + ACTIONS(2022), 1, + anon_sym_RPAREN, + STATE(1012), 1, sym_text_interpolation, - ACTIONS(1872), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1884), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1948), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1856), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33203] = 22, + [33418] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1882), 1, - anon_sym_SLASH, - STATE(992), 1, + STATE(1013), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1884), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1950), 2, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2024), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1856), 3, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33281] = 23, + [33496] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1861), 1, anon_sym_SLASH, - ACTIONS(1914), 1, - anon_sym_EQ_GT, - ACTIONS(1952), 1, - anon_sym_RPAREN, - STATE(993), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(1014), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(2026), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33361] = 22, + [33574] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1882), 1, - anon_sym_SLASH, - STATE(994), 1, + STATE(1015), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1884), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1954), 2, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2028), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1856), 3, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33439] = 22, + [33652] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1834), 1, + ACTIONS(1861), 1, anon_sym_SLASH, - STATE(995), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + ACTIONS(1981), 1, + anon_sym_SEMI, + ACTIONS(2020), 1, + anon_sym_COMMA, + STATE(1016), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1956), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1808), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33517] = 22, + [33732] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, - aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1834), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(996), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2006), 1, + anon_sym_EQ_GT, + ACTIONS(2030), 1, + anon_sym_RPAREN, + STATE(1017), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1958), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1808), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33595] = 22, + [33812] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1834), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - STATE(997), 1, + STATE(1018), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1960), 2, + ACTIONS(2032), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33673] = 22, + [33890] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1834), 1, - anon_sym_SLASH, - STATE(998), 1, + STATE(1019), 1, sym_text_interpolation, - ACTIONS(1824), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1962), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1808), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2034), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33751] = 22, + [33968] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1748), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1762), 1, - anon_sym_GT_EQ, - ACTIONS(1766), 1, - anon_sym_SLASH, - STATE(999), 1, + STATE(1020), 1, sym_text_interpolation, - ACTIONS(1756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1768), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1964), 2, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2036), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1740), 3, + anon_sym_RPAREN, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33829] = 22, + [34046] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, - aux_sym_binary_expression_token3, - ACTIONS(1816), 1, - aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1834), 1, + ACTIONS(1861), 1, anon_sym_SLASH, - STATE(1000), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(1021), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1966), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1808), 3, + ACTIONS(2038), 2, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33907] = 23, + [34124] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1882), 1, - anon_sym_SLASH, - ACTIONS(1902), 1, - anon_sym_RPAREN, - ACTIONS(1968), 1, - anon_sym_COMMA, - STATE(1001), 1, + STATE(1022), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1884), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2040), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [33987] = 22, + [34202] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1830), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1834), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - STATE(1002), 1, + STATE(1023), 1, sym_text_interpolation, - ACTIONS(1824), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1970), 2, + ACTIONS(2042), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1808), 3, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34065] = 22, + [34280] = 21, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1715), 1, + sym_name, + ACTIONS(1725), 1, + anon_sym_QMARK, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, + anon_sym_DOT_DOT_DOT, + STATE(1024), 1, + sym_text_interpolation, + STATE(1241), 1, + sym_qualified_name, + STATE(1300), 1, + sym_namespace_name_as_prefix, + STATE(1329), 1, + sym_union_type, + STATE(1333), 1, + sym__types, + STATE(1371), 1, + sym__reserved_identifier, + STATE(1401), 1, + sym__type, + STATE(1625), 1, + sym_variable_name, + STATE(1957), 1, + sym_namespace_name, + STATE(1245), 2, + sym_optional_type, + sym_primitive_type, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + ACTIONS(1552), 10, + 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_false, + anon_sym_null, + [34356] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, - aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1766), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(1003), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2006), 1, + anon_sym_EQ_GT, + ACTIONS(2048), 1, + anon_sym_RPAREN, + STATE(1025), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1768), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1972), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1740), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34143] = 22, + [34436] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - STATE(1004), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + STATE(1026), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1974), 2, + ACTIONS(2050), 2, anon_sym_SEMI, anon_sym_COLON, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34221] = 23, + [34514] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2054), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2062), 1, + sym_var_modifier, + STATE(1106), 1, + sym__modifier, + ACTIONS(2057), 2, + anon_sym_BSLASH, + anon_sym_DOLLAR, + ACTIONS(2059), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + STATE(1027), 2, + sym_text_interpolation, + aux_sym_property_declaration_repeat1, + ACTIONS(2065), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1105), 3, + sym_class_modifier, + sym_static_modifier, + sym_visibility_modifier, + ACTIONS(2052), 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_false, + anon_sym_null, + anon_sym_self, + anon_sym_parent, + sym_name, + [34570] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1748), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1762), 1, - anon_sym_GT_EQ, - ACTIONS(1766), 1, - anon_sym_SLASH, - ACTIONS(1902), 1, - anon_sym_SEMI, - ACTIONS(1944), 1, + ACTIONS(1987), 1, + anon_sym_RPAREN, + ACTIONS(2068), 1, anon_sym_COMMA, - STATE(1005), 1, + STATE(1028), 1, sym_text_interpolation, - ACTIONS(1756), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1768), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1740), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34301] = 22, + [34650] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1748), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1766), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - STATE(1006), 1, + STATE(1029), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1768), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1976), 2, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(1740), 3, + ACTIONS(2070), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34379] = 22, + [34728] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1802), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1804), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1806), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1810), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1812), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1814), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1816), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1818), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1820), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1822), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1830), 1, - anon_sym_GT_EQ, - ACTIONS(1834), 1, - anon_sym_SLASH, - STATE(1007), 1, + STATE(1030), 1, sym_text_interpolation, - ACTIONS(1824), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1832), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1836), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1978), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1808), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2072), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1828), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1826), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34457] = 23, + [34806] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1850), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1852), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1854), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1858), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1860), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1862), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1864), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1866), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1868), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1870), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1878), 1, - anon_sym_GT_EQ, - ACTIONS(1882), 1, - anon_sym_SLASH, - ACTIONS(1908), 1, - anon_sym_RPAREN, - ACTIONS(1968), 1, - anon_sym_COMMA, - STATE(1008), 1, + STATE(1031), 1, sym_text_interpolation, - ACTIONS(1872), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1880), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1884), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1856), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2074), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1876), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1874), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34537] = 22, + [34884] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - ACTIONS(1980), 1, - anon_sym_RPAREN, - STATE(1009), 1, + STATE(1032), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(2076), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34614] = 22, + [34962] = 23, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1933), 1, + anon_sym_GT_EQ, + ACTIONS(1937), 1, + anon_sym_SLASH, + ACTIONS(1941), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1943), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1947), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1949), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, + ACTIONS(1951), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, + ACTIONS(1953), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1955), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1957), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1959), 1, anon_sym_CARET, - ACTIONS(1672), 1, - anon_sym_GT_EQ, - ACTIONS(1676), 1, - anon_sym_SLASH, - ACTIONS(1982), 1, + ACTIONS(1981), 1, anon_sym_RPAREN, - STATE(1010), 1, + ACTIONS(2068), 1, + anon_sym_COMMA, + STATE(1033), 1, sym_text_interpolation, - ACTIONS(1666), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1939), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1961), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1929), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1931), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1963), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34691] = 22, + [35042] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1861), 1, anon_sym_SLASH, - ACTIONS(1984), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1011), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + STATE(1034), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(2078), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34768] = 22, + [35120] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - ACTIONS(1986), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1012), 1, + STATE(1035), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(2080), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34845] = 22, + [35198] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1881), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1883), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1885), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1889), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1891), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, + ACTIONS(1893), 1, aux_sym_binary_expression_token3, - ACTIONS(1748), 1, + ACTIONS(1895), 1, aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1897), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1899), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1901), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1909), 1, anon_sym_GT_EQ, - ACTIONS(1766), 1, + ACTIONS(1913), 1, anon_sym_SLASH, - ACTIONS(1988), 1, - anon_sym_RBRACK, - STATE(1013), 1, + STATE(1036), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1903), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1768), 2, + ACTIONS(1915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1740), 3, + ACTIONS(2082), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1887), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1907), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1905), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34922] = 22, + [35276] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1990), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2084), 1, anon_sym_RBRACE, - STATE(1014), 1, + STATE(1037), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [34999] = 22, + [35353] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1992), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2086), 1, anon_sym_RBRACE, - STATE(1015), 1, + STATE(1038), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35076] = 22, + [35430] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1994), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2088), 1, anon_sym_RBRACE, - STATE(1016), 1, + STATE(1039), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35153] = 22, + [35507] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1996), 1, - anon_sym_RPAREN, - STATE(1017), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2090), 1, + anon_sym_RBRACE, + STATE(1040), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35230] = 22, + [35584] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1998), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2092), 1, anon_sym_RBRACE, - STATE(1018), 1, + STATE(1041), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35307] = 22, + [35661] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2000), 1, - anon_sym_RBRACE, - STATE(1019), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2094), 1, + anon_sym_RPAREN, + STATE(1042), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35384] = 22, + [35738] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2002), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2096), 1, anon_sym_RBRACE, - STATE(1020), 1, + STATE(1043), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35461] = 22, + [35815] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2004), 1, - anon_sym_RBRACE, - STATE(1021), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2098), 1, + anon_sym_RPAREN, + STATE(1044), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35538] = 22, + [35892] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2006), 1, - anon_sym_RBRACE, - STATE(1022), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2100), 1, + anon_sym_COLON, + STATE(1045), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35615] = 22, + [35969] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2008), 1, - anon_sym_RBRACE, - STATE(1023), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2102), 1, + anon_sym_EQ_GT, + STATE(1046), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35692] = 22, + [36046] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2010), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2104), 1, anon_sym_COLON, - STATE(1024), 1, + STATE(1047), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35769] = 22, + [36123] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1861), 1, anon_sym_SLASH, - ACTIONS(2012), 1, - anon_sym_EQ_GT, - STATE(1025), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + ACTIONS(2106), 1, + anon_sym_RBRACK, + STATE(1048), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35846] = 22, + [36200] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, - aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1766), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1998), 1, - anon_sym_RBRACK, - STATE(1026), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2108), 1, + anon_sym_RBRACE, + STATE(1049), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1768), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1740), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [35923] = 22, + [36277] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(1988), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2110), 1, anon_sym_RBRACE, - STATE(1027), 1, + STATE(1050), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36000] = 22, + [36354] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2014), 1, - anon_sym_RPAREN, - STATE(1028), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2106), 1, + anon_sym_RBRACE, + STATE(1051), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36077] = 22, + [36431] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2016), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2112), 1, anon_sym_COLON, - STATE(1029), 1, + STATE(1052), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36154] = 22, + [36508] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2018), 1, - anon_sym_COLON, - STATE(1030), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2114), 1, + anon_sym_RBRACE, + STATE(1053), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36231] = 22, + [36585] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2020), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2116), 1, anon_sym_RBRACE, - STATE(1031), 1, + STATE(1054), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36308] = 22, + [36662] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2022), 1, - anon_sym_RPAREN, - STATE(1032), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2118), 1, + anon_sym_EQ_GT, + STATE(1055), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36385] = 22, + [36739] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2024), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2120), 1, anon_sym_RBRACE, - STATE(1033), 1, + STATE(1056), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36462] = 22, + [36816] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2026), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2122), 1, anon_sym_RBRACE, - STATE(1034), 1, + STATE(1057), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36539] = 22, + [36893] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2028), 1, - anon_sym_RBRACE, - STATE(1035), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2124), 1, + anon_sym_EQ_GT, + STATE(1058), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36616] = 22, + [36970] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2030), 1, - anon_sym_RBRACE, - STATE(1036), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2126), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1059), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36693] = 22, + [37047] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2032), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2128), 1, anon_sym_RBRACE, - STATE(1037), 1, + STATE(1060), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36770] = 22, + [37124] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1766), 1, + ACTIONS(1861), 1, anon_sym_SLASH, - ACTIONS(2034), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + ACTIONS(2130), 1, anon_sym_RBRACK, - STATE(1038), 1, + STATE(1061), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1768), 2, + ACTIONS(1863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1740), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36847] = 22, + [37201] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2036), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2132), 1, anon_sym_RPAREN, - STATE(1039), 1, + STATE(1062), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36924] = 22, + [37278] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2034), 1, - anon_sym_RBRACE, - STATE(1040), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2134), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1063), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37001] = 22, + [37355] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, + anon_sym_AMP_AMP, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1761), 1, + anon_sym_SLASH, + ACTIONS(1767), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, + ACTIONS(1769), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, + ACTIONS(1771), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(2136), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1064), 1, + sym_text_interpolation, + ACTIONS(1751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1763), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1741), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1755), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1753), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37432] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, + anon_sym_PIPE, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2038), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2130), 1, anon_sym_RBRACE, - STATE(1041), 1, + STATE(1065), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37078] = 22, + [37509] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2040), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2138), 1, anon_sym_RBRACE, - STATE(1042), 1, + STATE(1066), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37155] = 22, + [37586] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2042), 1, - anon_sym_COLON, - STATE(1043), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2140), 1, + anon_sym_RPAREN, + STATE(1067), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37232] = 22, + [37663] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2044), 1, - anon_sym_RBRACE, - STATE(1044), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2142), 1, + anon_sym_RPAREN, + STATE(1068), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37309] = 22, + [37740] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2046), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2144), 1, anon_sym_RBRACE, - STATE(1045), 1, + STATE(1069), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37386] = 22, + [37817] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, + anon_sym_AMP_AMP, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1761), 1, + anon_sym_SLASH, + ACTIONS(1767), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, + ACTIONS(1769), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, + ACTIONS(1771), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(2146), 1, + anon_sym_RPAREN, + STATE(1070), 1, + sym_text_interpolation, + ACTIONS(1751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1763), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1741), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1755), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1753), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [37894] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, + anon_sym_PIPE, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2048), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2148), 1, anon_sym_RBRACE, - STATE(1046), 1, + STATE(1071), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37463] = 22, + [37971] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1736), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1738), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1742), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1744), 1, - aux_sym_binary_expression_token2, - ACTIONS(1746), 1, - aux_sym_binary_expression_token3, - ACTIONS(1748), 1, - aux_sym_binary_expression_token4, - ACTIONS(1750), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1752), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1754), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1762), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1766), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2020), 1, - anon_sym_RBRACK, - STATE(1047), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2150), 1, + anon_sym_COLON, + STATE(1072), 1, sym_text_interpolation, - ACTIONS(1756), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1764), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1768), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1740), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1760), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1758), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37540] = 22, + [38048] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, + anon_sym_AMP_AMP, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1761), 1, + anon_sym_SLASH, + ACTIONS(1767), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, + ACTIONS(1769), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, + ACTIONS(1771), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(2152), 1, + anon_sym_RPAREN, + STATE(1073), 1, + sym_text_interpolation, + ACTIONS(1751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1763), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1741), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1755), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1753), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38125] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, + anon_sym_PIPE, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2050), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2154), 1, anon_sym_RBRACE, - STATE(1048), 1, + STATE(1074), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37617] = 22, + [38202] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2052), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2156), 1, anon_sym_RBRACE, - STATE(1049), 1, + STATE(1075), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37694] = 22, + [38279] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, + anon_sym_AMP_AMP, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1761), 1, + anon_sym_SLASH, + ACTIONS(1767), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, + ACTIONS(1769), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, + ACTIONS(1771), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(2158), 1, + anon_sym_RPAREN, + STATE(1076), 1, + sym_text_interpolation, + ACTIONS(1751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1763), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1741), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1755), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1753), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38356] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, + anon_sym_PIPE, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2054), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2160), 1, anon_sym_RBRACE, - STATE(1050), 1, + STATE(1077), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37771] = 22, + [38433] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2056), 1, - anon_sym_EQ_GT, - STATE(1051), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2162), 1, + anon_sym_RBRACE, + STATE(1078), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37848] = 22, + [38510] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1745), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1747), 1, + anon_sym_AMP_AMP, + ACTIONS(1749), 1, + anon_sym_CARET, + ACTIONS(1757), 1, + anon_sym_GT_EQ, + ACTIONS(1761), 1, + anon_sym_SLASH, + ACTIONS(1767), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, + ACTIONS(1769), 1, aux_sym_binary_expression_token3, - ACTIONS(1658), 1, + ACTIONS(1771), 1, aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(2164), 1, + anon_sym_RBRACE, + STATE(1079), 1, + sym_text_interpolation, + ACTIONS(1751), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1759), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1763), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1741), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1755), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + ACTIONS(1753), 4, + anon_sym_LT_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ_GT, + [38587] = 22, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_AMP, + ACTIONS(1737), 1, + anon_sym_QMARK, + ACTIONS(1739), 1, + anon_sym_PIPE, + ACTIONS(1743), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2058), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2166), 1, anon_sym_RPAREN, - STATE(1052), 1, + STATE(1080), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37925] = 22, + [38664] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1861), 1, anon_sym_SLASH, - ACTIONS(2060), 1, - anon_sym_RBRACE, - STATE(1053), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + ACTIONS(2168), 1, + anon_sym_RBRACK, + STATE(1081), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38002] = 22, + [38741] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2062), 1, - anon_sym_EQ_GT, - STATE(1054), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2168), 1, + anon_sym_RBRACE, + STATE(1082), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38079] = 22, + [38818] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2064), 1, - anon_sym_RPAREN, - STATE(1055), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2170), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1083), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38156] = 22, + [38895] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2066), 1, - anon_sym_RPAREN, - STATE(1056), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2172), 1, + anon_sym_RBRACE, + STATE(1084), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38233] = 22, + [38972] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2068), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2174), 1, anon_sym_RBRACE, - STATE(1057), 1, + STATE(1085), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38310] = 22, + [39049] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2070), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1058), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2176), 1, + anon_sym_RBRACE, + STATE(1086), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38387] = 22, + [39126] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1833), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1835), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1837), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1841), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, + ACTIONS(1843), 1, aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1845), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1847), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1849), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1857), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1861), 1, anon_sym_SLASH, - ACTIONS(2072), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1059), 1, + ACTIONS(1865), 1, + aux_sym_binary_expression_token3, + ACTIONS(1867), 1, + aux_sym_binary_expression_token4, + ACTIONS(2176), 1, + anon_sym_RBRACK, + STATE(1087), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1859), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1863), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1839), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1855), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1853), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38464] = 22, + [39203] = 22, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1642), 1, + ACTIONS(1735), 1, anon_sym_AMP, - ACTIONS(1646), 1, + ACTIONS(1737), 1, anon_sym_QMARK, - ACTIONS(1648), 1, + ACTIONS(1739), 1, anon_sym_PIPE, - ACTIONS(1652), 1, + ACTIONS(1743), 1, anon_sym_QMARK_QMARK, - ACTIONS(1654), 1, - aux_sym_binary_expression_token2, - ACTIONS(1656), 1, - aux_sym_binary_expression_token3, - ACTIONS(1658), 1, - aux_sym_binary_expression_token4, - ACTIONS(1660), 1, + ACTIONS(1745), 1, anon_sym_PIPE_PIPE, - ACTIONS(1662), 1, + ACTIONS(1747), 1, anon_sym_AMP_AMP, - ACTIONS(1664), 1, + ACTIONS(1749), 1, anon_sym_CARET, - ACTIONS(1672), 1, + ACTIONS(1757), 1, anon_sym_GT_EQ, - ACTIONS(1676), 1, + ACTIONS(1761), 1, anon_sym_SLASH, - ACTIONS(2074), 1, + ACTIONS(1767), 1, + aux_sym_binary_expression_token2, + ACTIONS(1769), 1, + aux_sym_binary_expression_token3, + ACTIONS(1771), 1, + aux_sym_binary_expression_token4, + ACTIONS(2178), 1, anon_sym_RBRACE, - STATE(1060), 1, + STATE(1088), 1, sym_text_interpolation, - ACTIONS(1666), 2, + ACTIONS(1751), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1674), 2, + ACTIONS(1759), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1678), 2, + ACTIONS(1763), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1650), 3, + ACTIONS(1741), 3, anon_sym_PLUS, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1670), 3, + ACTIONS(1755), 3, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(1668), 4, + ACTIONS(1753), 4, anon_sym_LT_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38541] = 7, + [39280] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1334), 1, - anon_sym_PIPE, - ACTIONS(1414), 1, - anon_sym_BSLASH, - ACTIONS(2078), 1, - anon_sym_DOLLAR, - STATE(1061), 1, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2180), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2182), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2184), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2186), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2188), 1, + anon_sym_RBRACE, + ACTIONS(2192), 1, + sym_var_modifier, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1089), 1, sym_text_interpolation, - ACTIONS(2076), 23, + STATE(1095), 1, + aux_sym_declaration_list_repeat1, + STATE(1101), 1, + sym_visibility_modifier, + STATE(1106), 1, + sym__modifier, + STATE(1114), 1, + sym_attribute_list, + STATE(1119), 1, + sym__const_declaration, + STATE(1132), 1, + sym__class_const_declaration, + STATE(1140), 1, + sym__member_declaration, + STATE(1388), 1, + sym__function_definition_header, + ACTIONS(2190), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + STATE(1105), 2, + sym_class_modifier, + sym_static_modifier, + ACTIONS(2194), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1149), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [39359] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2180), 1, aux_sym_function_static_declaration_token1, - aux_sym_namespace_definition_token1, + ACTIONS(2182), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2184), 1, aux_sym_namespace_use_declaration_token2, + ACTIONS(2186), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2192), 1, + sym_var_modifier, + ACTIONS(2196), 1, + anon_sym_RBRACE, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1090), 1, + sym_text_interpolation, + STATE(1095), 1, + aux_sym_declaration_list_repeat1, + STATE(1101), 1, + sym_visibility_modifier, + STATE(1106), 1, + sym__modifier, + STATE(1114), 1, + sym_attribute_list, + STATE(1119), 1, + sym__const_declaration, + STATE(1132), 1, + sym__class_const_declaration, + STATE(1140), 1, + sym__member_declaration, + STATE(1388), 1, + sym__function_definition_header, + ACTIONS(2190), 2, aux_sym_class_modifier_token1, aux_sym_class_modifier_token2, + STATE(1105), 2, + sym_class_modifier, + sym_static_modifier, + ACTIONS(2194), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1149), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [39438] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2180), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2182), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2184), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2186), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2192), 1, sym_var_modifier, + ACTIONS(2198), 1, + anon_sym_RBRACE, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1091), 1, + sym_text_interpolation, + STATE(1095), 1, + aux_sym_declaration_list_repeat1, + STATE(1101), 1, + sym_visibility_modifier, + STATE(1106), 1, + sym__modifier, + STATE(1114), 1, + sym_attribute_list, + STATE(1119), 1, + sym__const_declaration, + STATE(1132), 1, + sym__class_const_declaration, + STATE(1140), 1, + sym__member_declaration, + STATE(1388), 1, + sym__function_definition_header, + ACTIONS(2190), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + STATE(1105), 2, + sym_class_modifier, + sym_static_modifier, + ACTIONS(2194), 3, 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_false, - anon_sym_null, - anon_sym_self, - anon_sym_parent, - sym_name, - [38585] = 5, + STATE(1149), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [39517] = 24, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1062), 1, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2180), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2182), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2184), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2186), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2192), 1, + sym_var_modifier, + ACTIONS(2200), 1, + anon_sym_RBRACE, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1092), 1, + sym_text_interpolation, + STATE(1095), 1, + aux_sym_declaration_list_repeat1, + STATE(1101), 1, + sym_visibility_modifier, + STATE(1106), 1, + sym__modifier, + STATE(1114), 1, + sym_attribute_list, + STATE(1119), 1, + sym__const_declaration, + STATE(1132), 1, + sym__class_const_declaration, + STATE(1140), 1, + sym__member_declaration, + STATE(1388), 1, + sym__function_definition_header, + ACTIONS(2190), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + STATE(1105), 2, + sym_class_modifier, + sym_static_modifier, + ACTIONS(2194), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1149), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [39596] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2180), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2182), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2184), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2186), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2192), 1, + sym_var_modifier, + ACTIONS(2202), 1, + anon_sym_RBRACE, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1090), 1, + aux_sym_declaration_list_repeat1, + STATE(1093), 1, + sym_text_interpolation, + STATE(1101), 1, + sym_visibility_modifier, + STATE(1106), 1, + sym__modifier, + STATE(1114), 1, + sym_attribute_list, + STATE(1119), 1, + sym__const_declaration, + STATE(1132), 1, + sym__class_const_declaration, + STATE(1140), 1, + sym__member_declaration, + STATE(1388), 1, + sym__function_definition_header, + ACTIONS(2190), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + STATE(1105), 2, + sym_class_modifier, + sym_static_modifier, + ACTIONS(2194), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1149), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [39675] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2180), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2182), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2184), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2186), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2192), 1, + sym_var_modifier, + ACTIONS(2204), 1, + anon_sym_RBRACE, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1089), 1, + aux_sym_declaration_list_repeat1, + STATE(1094), 1, + sym_text_interpolation, + STATE(1101), 1, + sym_visibility_modifier, + STATE(1106), 1, + sym__modifier, + STATE(1114), 1, + sym_attribute_list, + STATE(1119), 1, + sym__const_declaration, + STATE(1132), 1, + sym__class_const_declaration, + STATE(1140), 1, + sym__member_declaration, + STATE(1388), 1, + sym__function_definition_header, + ACTIONS(2190), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + STATE(1105), 2, + sym_class_modifier, + sym_static_modifier, + ACTIONS(2194), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1149), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [39754] = 23, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2206), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2209), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2212), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2215), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2218), 1, + anon_sym_RBRACE, + ACTIONS(2223), 1, + sym_var_modifier, + ACTIONS(2229), 1, + anon_sym_POUND_LBRACK, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1101), 1, + sym_visibility_modifier, + STATE(1106), 1, + sym__modifier, + STATE(1114), 1, + sym_attribute_list, + STATE(1119), 1, + sym__const_declaration, + STATE(1132), 1, + sym__class_const_declaration, + STATE(1140), 1, + sym__member_declaration, + STATE(1388), 1, + sym__function_definition_header, + ACTIONS(2220), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + STATE(1095), 2, + sym_text_interpolation, + aux_sym_declaration_list_repeat1, + STATE(1105), 2, + sym_class_modifier, + sym_static_modifier, + ACTIONS(2226), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1149), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [39831] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2180), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2182), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2184), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2186), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2192), 1, + sym_var_modifier, + ACTIONS(2232), 1, + anon_sym_RBRACE, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1091), 1, + aux_sym_declaration_list_repeat1, + STATE(1096), 1, + sym_text_interpolation, + STATE(1101), 1, + sym_visibility_modifier, + STATE(1106), 1, + sym__modifier, + STATE(1114), 1, + sym_attribute_list, + STATE(1119), 1, + sym__const_declaration, + STATE(1132), 1, + sym__class_const_declaration, + STATE(1140), 1, + sym__member_declaration, + STATE(1388), 1, + sym__function_definition_header, + ACTIONS(2190), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + STATE(1105), 2, + sym_class_modifier, + sym_static_modifier, + ACTIONS(2194), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1149), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [39910] = 24, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + ACTIONS(277), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2180), 1, + aux_sym_function_static_declaration_token1, + ACTIONS(2182), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2184), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2186), 1, + aux_sym_namespace_use_declaration_token3, + ACTIONS(2192), 1, + sym_var_modifier, + ACTIONS(2234), 1, + anon_sym_RBRACE, + STATE(668), 1, + aux_sym_property_declaration_repeat1, + STATE(995), 1, + aux_sym_attribute_list_repeat2, + STATE(1092), 1, + aux_sym_declaration_list_repeat1, + STATE(1097), 1, sym_text_interpolation, - ACTIONS(2083), 2, + STATE(1101), 1, + sym_visibility_modifier, + STATE(1106), 1, + sym__modifier, + STATE(1114), 1, + sym_attribute_list, + STATE(1119), 1, + sym__const_declaration, + STATE(1132), 1, + sym__class_const_declaration, + STATE(1140), 1, + sym__member_declaration, + STATE(1388), 1, + sym__function_definition_header, + ACTIONS(2190), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + STATE(1105), 2, + sym_class_modifier, + sym_static_modifier, + ACTIONS(2194), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + STATE(1149), 3, + sym_property_declaration, + sym_method_declaration, + sym_use_declaration, + [39989] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1423), 1, + anon_sym_PIPE, + ACTIONS(1479), 1, anon_sym_BSLASH, + ACTIONS(2238), 1, anon_sym_DOLLAR, - ACTIONS(2081), 24, + STATE(1098), 1, + sym_text_interpolation, + ACTIONS(2236), 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, sym_var_modifier, @@ -89671,43 +93008,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [38625] = 17, + [40033] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(623), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(628), 1, sym_name, - ACTIONS(2087), 1, + ACTIONS(2243), 1, anon_sym_QMARK, - STATE(653), 1, + STATE(688), 1, sym__reserved_identifier, - STATE(1063), 1, + STATE(1099), 1, sym_text_interpolation, - STATE(1270), 1, - sym__types, - STATE(1299), 1, + STATE(1311), 1, sym_namespace_name_as_prefix, - STATE(1322), 1, + STATE(1337), 1, + sym__types, + STATE(1395), 1, sym_qualified_name, - STATE(1432), 1, + STATE(1598), 1, sym__type, - STATE(1437), 1, + STATE(1647), 1, sym_union_type, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - STATE(1365), 2, + STATE(1398), 2, sym_optional_type, sym_primitive_type, - ACTIONS(2085), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - ACTIONS(2089), 10, + ACTIONS(2245), 10, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -89718,43 +93055,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_false, anon_sym_null, - [38689] = 17, + [40097] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(196), 1, + STATE(1100), 1, + sym_text_interpolation, + ACTIONS(2249), 2, anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, + anon_sym_DOLLAR, + ACTIONS(2247), 24, + aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, - ACTIONS(1477), 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_QMARK, - STATE(584), 1, - sym__reserved_identifier, - STATE(1064), 1, - sym_text_interpolation, - STATE(1225), 1, - sym_qualified_name, - STATE(1242), 1, - sym_union_type, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1298), 1, - sym__types, - STATE(1684), 1, - sym__type, - STATE(1907), 1, - sym_namespace_name, - STATE(1226), 2, - sym_optional_type, - sym_primitive_type, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - ACTIONS(1479), 10, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -89765,21 +93087,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_false, anon_sym_null, - [38753] = 5, + anon_sym_self, + anon_sym_parent, + sym_name, + [40137] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1065), 1, + ACTIONS(2253), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1101), 1, sym_text_interpolation, - ACTIONS(2093), 2, + ACTIONS(2255), 2, anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2091), 24, + ACTIONS(2251), 23, 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, sym_var_modifier, @@ -89800,22 +93126,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [38793] = 6, + [40179] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2097), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1066), 1, + STATE(1102), 1, sym_text_interpolation, - ACTIONS(2099), 2, + ACTIONS(2259), 2, anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2095), 23, + ACTIONS(2257), 24, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, + aux_sym_class_declaration_token1, aux_sym_class_modifier_token1, aux_sym_class_modifier_token2, sym_var_modifier, @@ -89836,17 +93161,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [38835] = 5, + [40219] = 17, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, sym_comment, - STATE(1067), 1, + ACTIONS(1550), 1, + anon_sym_QMARK, + STATE(603), 1, + sym__reserved_identifier, + STATE(1103), 1, + sym_text_interpolation, + STATE(1241), 1, + sym_qualified_name, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1329), 1, + sym_union_type, + STATE(1355), 1, + sym__types, + STATE(1799), 1, + sym__type, + STATE(1957), 1, + sym_namespace_name, + STATE(1245), 2, + sym_optional_type, + sym_primitive_type, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + ACTIONS(1552), 10, + 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_false, + anon_sym_null, + [40283] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1104), 1, sym_text_interpolation, - ACTIONS(1414), 2, + ACTIONS(1479), 2, anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2076), 23, + ACTIONS(2236), 23, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -89870,17 +93242,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [38874] = 5, + [40322] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1068), 1, + STATE(1105), 1, sym_text_interpolation, - ACTIONS(2103), 2, + ACTIONS(2255), 2, anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2101), 23, + ACTIONS(2251), 23, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -89904,17 +93276,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [38913] = 5, + [40361] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1069), 1, + STATE(1106), 1, sym_text_interpolation, - ACTIONS(2099), 2, + ACTIONS(2263), 2, anon_sym_BSLASH, anon_sym_DOLLAR, - ACTIONS(2095), 23, + ACTIONS(2261), 23, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -89938,39 +93310,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [38952] = 15, + [40400] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(1788), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(628), 1, sym_name, - ACTIONS(1798), 1, + ACTIONS(2243), 1, anon_sym_QMARK, - STATE(1070), 1, + STATE(688), 1, + sym__reserved_identifier, + STATE(1107), 1, sym_text_interpolation, - STATE(1216), 1, - sym__types, - STATE(1225), 1, - sym_qualified_name, - STATE(1265), 1, + STATE(1311), 1, sym_namespace_name_as_prefix, - STATE(1321), 1, - sym__reserved_identifier, - STATE(1907), 1, + STATE(1395), 1, + sym_qualified_name, + STATE(1443), 1, + sym__types, + STATE(1957), 1, sym_namespace_name, - STATE(1226), 2, + STATE(1398), 2, sym_optional_type, sym_primitive_type, - ACTIONS(1481), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - ACTIONS(1479), 10, + ACTIONS(2245), 10, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -89981,39 +93353,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_false, anon_sym_null, - [39010] = 15, + [40458] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(1477), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1715), 1, + sym_name, + ACTIONS(1725), 1, anon_sym_QMARK, - STATE(584), 1, - sym__reserved_identifier, - STATE(1071), 1, + STATE(1108), 1, sym_text_interpolation, - STATE(1216), 1, - sym__types, - STATE(1225), 1, + STATE(1241), 1, sym_qualified_name, - STATE(1269), 1, + STATE(1272), 1, + sym__types, + STATE(1300), 1, sym_namespace_name_as_prefix, - STATE(1907), 1, + STATE(1371), 1, + sym__reserved_identifier, + STATE(1957), 1, sym_namespace_name, - STATE(1226), 2, + STATE(1245), 2, sym_optional_type, sym_primitive_type, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - ACTIONS(1479), 10, + ACTIONS(1552), 10, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -90024,39 +93396,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_false, anon_sym_null, - [39068] = 15, + [40516] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(623), 1, + ACTIONS(528), 1, sym_name, - ACTIONS(2087), 1, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1550), 1, anon_sym_QMARK, - STATE(653), 1, + STATE(603), 1, sym__reserved_identifier, - STATE(1072), 1, + STATE(1109), 1, sym_text_interpolation, - STATE(1299), 1, - sym_namespace_name_as_prefix, - STATE(1322), 1, + STATE(1241), 1, sym_qualified_name, - STATE(1374), 1, + STATE(1272), 1, sym__types, - STATE(1907), 1, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1957), 1, sym_namespace_name, - STATE(1365), 2, + STATE(1245), 2, sym_optional_type, sym_primitive_type, - ACTIONS(2085), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - ACTIONS(2089), 10, + ACTIONS(1552), 10, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -90067,447 +93439,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_false, anon_sym_null, - [39126] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2105), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2107), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2109), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2111), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2113), 1, - anon_sym_RBRACE, - ACTIONS(2117), 1, - sym_var_modifier, - STATE(650), 1, - aux_sym_property_declaration_repeat1, - STATE(1066), 1, - sym_visibility_modifier, - STATE(1068), 1, - sym__modifier, - STATE(1073), 1, - sym_text_interpolation, - STATE(1079), 1, - aux_sym_declaration_list_repeat1, - STATE(1096), 1, - sym__member_declaration, - STATE(1340), 1, - sym__function_definition_header, - ACTIONS(2115), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1069), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(2119), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1095), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39191] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2105), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2107), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2109), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2111), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2117), 1, - sym_var_modifier, - ACTIONS(2121), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_property_declaration_repeat1, - STATE(1066), 1, - sym_visibility_modifier, - STATE(1068), 1, - sym__modifier, - STATE(1073), 1, - aux_sym_declaration_list_repeat1, - STATE(1074), 1, - sym_text_interpolation, - STATE(1096), 1, - sym__member_declaration, - STATE(1340), 1, - sym__function_definition_header, - ACTIONS(2115), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1069), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(2119), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1095), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39256] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2105), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2107), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2109), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2111), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2117), 1, - sym_var_modifier, - ACTIONS(2123), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_property_declaration_repeat1, - STATE(1066), 1, - sym_visibility_modifier, - STATE(1068), 1, - sym__modifier, - STATE(1075), 1, - sym_text_interpolation, - STATE(1079), 1, - aux_sym_declaration_list_repeat1, - STATE(1096), 1, - sym__member_declaration, - STATE(1340), 1, - sym__function_definition_header, - ACTIONS(2115), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1069), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(2119), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1095), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39321] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2105), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2107), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2109), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2111), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2117), 1, - sym_var_modifier, - ACTIONS(2125), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_property_declaration_repeat1, - STATE(1066), 1, - sym_visibility_modifier, - STATE(1068), 1, - sym__modifier, - STATE(1076), 1, - sym_text_interpolation, - STATE(1079), 1, - aux_sym_declaration_list_repeat1, - STATE(1096), 1, - sym__member_declaration, - STATE(1340), 1, - sym__function_definition_header, - ACTIONS(2115), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1069), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(2119), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1095), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39386] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2105), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2107), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2109), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2111), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2117), 1, - sym_var_modifier, - ACTIONS(2127), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_property_declaration_repeat1, - STATE(1066), 1, - sym_visibility_modifier, - STATE(1068), 1, - sym__modifier, - STATE(1076), 1, - aux_sym_declaration_list_repeat1, - STATE(1077), 1, - sym_text_interpolation, - STATE(1096), 1, - sym__member_declaration, - STATE(1340), 1, - sym__function_definition_header, - ACTIONS(2115), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1069), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(2119), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1095), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39451] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2105), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2107), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2109), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2111), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2117), 1, - sym_var_modifier, - ACTIONS(2129), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_property_declaration_repeat1, - STATE(1066), 1, - sym_visibility_modifier, - STATE(1068), 1, - sym__modifier, - STATE(1078), 1, - sym_text_interpolation, - STATE(1079), 1, - aux_sym_declaration_list_repeat1, - STATE(1096), 1, - sym__member_declaration, - STATE(1340), 1, - sym__function_definition_header, - ACTIONS(2115), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1069), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(2119), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1095), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39516] = 18, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2131), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2134), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2137), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2140), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2143), 1, - anon_sym_RBRACE, - ACTIONS(2148), 1, - sym_var_modifier, - STATE(650), 1, - aux_sym_property_declaration_repeat1, - STATE(1066), 1, - sym_visibility_modifier, - STATE(1068), 1, - sym__modifier, - STATE(1096), 1, - sym__member_declaration, - STATE(1340), 1, - sym__function_definition_header, - ACTIONS(2145), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1069), 2, - sym_class_modifier, - sym_static_modifier, - STATE(1079), 2, - sym_text_interpolation, - aux_sym_declaration_list_repeat1, - ACTIONS(2151), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1095), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39579] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2105), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2107), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2109), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2111), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2117), 1, - sym_var_modifier, - ACTIONS(2154), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_property_declaration_repeat1, - STATE(1066), 1, - sym_visibility_modifier, - STATE(1068), 1, - sym__modifier, - STATE(1075), 1, - aux_sym_declaration_list_repeat1, - STATE(1080), 1, - sym_text_interpolation, - STATE(1096), 1, - sym__member_declaration, - STATE(1340), 1, - sym__function_definition_header, - ACTIONS(2115), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1069), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(2119), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1095), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39644] = 19, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2105), 1, - aux_sym_function_static_declaration_token1, - ACTIONS(2107), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2109), 1, - aux_sym_namespace_use_declaration_token2, - ACTIONS(2111), 1, - aux_sym_namespace_use_declaration_token3, - ACTIONS(2117), 1, - sym_var_modifier, - ACTIONS(2156), 1, - anon_sym_RBRACE, - STATE(650), 1, - aux_sym_property_declaration_repeat1, - STATE(1066), 1, - sym_visibility_modifier, - STATE(1068), 1, - sym__modifier, - STATE(1078), 1, - aux_sym_declaration_list_repeat1, - STATE(1081), 1, - sym_text_interpolation, - STATE(1096), 1, - sym__member_declaration, - STATE(1340), 1, - sym__function_definition_header, - ACTIONS(2115), 2, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - STATE(1069), 2, - sym_class_modifier, - sym_static_modifier, - ACTIONS(2119), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - STATE(1095), 4, - sym_const_declaration, - sym_property_declaration, - sym_method_declaration, - sym_use_declaration, - [39709] = 13, + [40574] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(623), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(628), 1, sym_name, - STATE(653), 1, + STATE(688), 1, sym__reserved_identifier, - STATE(1082), 1, + STATE(1110), 1, sym_text_interpolation, - STATE(1299), 1, + STATE(1311), 1, sym_namespace_name_as_prefix, - STATE(1398), 1, + STATE(1413), 1, sym_qualified_name, - STATE(1407), 1, + STATE(1415), 1, sym_primitive_type, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - ACTIONS(2085), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - ACTIONS(2089), 10, + ACTIONS(2245), 10, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -90518,34 +93477,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_false, anon_sym_null, - [39760] = 13, + [40625] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(525), 1, + ACTIONS(528), 1, sym_name, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - STATE(584), 1, + ACTIONS(592), 1, + sym_comment, + STATE(603), 1, sym__reserved_identifier, - STATE(1083), 1, + STATE(1111), 1, sym_text_interpolation, - STATE(1205), 1, + STATE(1275), 1, sym_primitive_type, - STATE(1206), 1, + STATE(1276), 1, sym_qualified_name, - STATE(1269), 1, + STATE(1303), 1, sym_namespace_name_as_prefix, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - ACTIONS(1479), 10, + ACTIONS(1552), 10, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -90556,34 +93515,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_false, anon_sym_null, - [39811] = 13, + [40676] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(1788), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1715), 1, sym_name, - STATE(1084), 1, + STATE(1112), 1, sym_text_interpolation, - STATE(1205), 1, + STATE(1275), 1, sym_primitive_type, - STATE(1206), 1, + STATE(1276), 1, sym_qualified_name, - STATE(1265), 1, + STATE(1300), 1, sym_namespace_name_as_prefix, - STATE(1321), 1, + STATE(1371), 1, sym__reserved_identifier, - STATE(1907), 1, + STATE(1957), 1, sym_namespace_name, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - ACTIONS(1479), 10, + ACTIONS(1552), 10, anon_sym_array, anon_sym_callable, anon_sym_iterable, @@ -90594,16 +93553,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_void, anon_sym_false, anon_sym_null, - [39862] = 5, + [40727] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1336), 1, + ACTIONS(1425), 1, anon_sym_EQ, - STATE(1085), 1, + STATE(1113), 1, sym_text_interpolation, - ACTIONS(1334), 17, + ACTIONS(1423), 17, anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_LBRACE, @@ -90621,90 +93580,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOLLAR, - [39894] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1002), 1, - aux_sym_else_clause_token1, - STATE(1086), 1, - sym_text_interpolation, - ACTIONS(1000), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, - sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [39922] = 5, + [40759] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1214), 1, - aux_sym_else_clause_token1, - STATE(1087), 1, - sym_text_interpolation, - ACTIONS(1212), 13, + ACTIONS(2180), 1, aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, + ACTIONS(2184), 1, aux_sym_namespace_use_declaration_token2, + ACTIONS(2186), 1, aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, - aux_sym_class_modifier_token1, - aux_sym_class_modifier_token2, + ACTIONS(2192), 1, sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [39950] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1046), 1, - aux_sym_else_clause_token1, - STATE(1088), 1, + STATE(670), 1, + aux_sym_property_declaration_repeat1, + STATE(1101), 1, + sym_visibility_modifier, + STATE(1106), 1, + sym__modifier, + STATE(1114), 1, sym_text_interpolation, - ACTIONS(1044), 13, - aux_sym_function_static_declaration_token1, - aux_sym_namespace_use_declaration_token1, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - anon_sym_RBRACE, + STATE(1122), 1, + sym__const_declaration, + STATE(1472), 1, + sym__function_definition_header, + ACTIONS(2190), 2, aux_sym_class_modifier_token1, aux_sym_class_modifier_token2, - sym_var_modifier, + STATE(1105), 2, + sym_class_modifier, + sym_static_modifier, + ACTIONS(2194), 3, aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [39978] = 5, + [40809] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1089), 1, + STATE(1115), 1, sym_text_interpolation, - ACTIONS(2158), 6, + ACTIONS(2265), 6, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, anon_sym_array, anon_sym_self, anon_sym_parent, sym_name, - ACTIONS(1593), 7, + ACTIONS(1664), 7, sym_heredoc, anon_sym_BSLASH, anon_sym_RBRACE, @@ -90712,74 +93637,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, sym_string, anon_sym_DOLLAR, - [40005] = 13, + [40836] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(623), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(628), 1, sym_name, - ACTIONS(2162), 1, + ACTIONS(2269), 1, anon_sym_BSLASH, - STATE(653), 1, + STATE(688), 1, sym__reserved_identifier, - STATE(1090), 1, + STATE(1116), 1, sym_text_interpolation, - STATE(1281), 1, - sym_qualified_name, - STATE(1299), 1, + STATE(1311), 1, sym_namespace_name_as_prefix, - STATE(1338), 1, + STATE(1351), 1, + sym_qualified_name, + STATE(1454), 1, sym_namespace_use_clause, - STATE(1878), 1, + STATE(1926), 1, sym_namespace_name, - ACTIONS(2160), 2, + ACTIONS(2267), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - ACTIONS(2085), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [40048] = 13, + [40879] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(623), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(628), 1, sym_name, - ACTIONS(2166), 1, + ACTIONS(2273), 1, anon_sym_BSLASH, - STATE(653), 1, + STATE(688), 1, sym__reserved_identifier, - STATE(1091), 1, + STATE(1117), 1, sym_text_interpolation, - STATE(1281), 1, - sym_qualified_name, - STATE(1299), 1, + STATE(1311), 1, sym_namespace_name_as_prefix, - STATE(1309), 1, + STATE(1351), 1, + sym_qualified_name, + STATE(1396), 1, sym_namespace_use_clause, - STATE(1850), 1, + STATE(1972), 1, sym_namespace_name, - ACTIONS(2164), 2, + ACTIONS(2271), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - ACTIONS(2085), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [40091] = 4, + [40922] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1092), 1, + STATE(1118), 1, sym_text_interpolation, - ACTIONS(2168), 11, + ACTIONS(2275), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -90791,41 +93716,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40114] = 12, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(623), 1, - sym_name, - ACTIONS(2170), 1, - anon_sym_BSLASH, - STATE(653), 1, - sym__reserved_identifier, - STATE(1093), 1, - sym_text_interpolation, - STATE(1281), 1, - sym_qualified_name, - STATE(1299), 1, - sym_namespace_name_as_prefix, - STATE(1334), 1, - sym_namespace_use_clause, - STATE(1854), 1, - sym_namespace_name, - ACTIONS(2085), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [40153] = 4, + anon_sym_POUND_LBRACK, + [40946] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1094), 1, + STATE(1119), 1, sym_text_interpolation, - ACTIONS(904), 11, + ACTIONS(2277), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -90837,14 +93736,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40176] = 4, + anon_sym_POUND_LBRACK, + [40970] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1095), 1, + STATE(1120), 1, sym_text_interpolation, - ACTIONS(2172), 11, + ACTIONS(2279), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -90856,14 +93756,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40199] = 4, + anon_sym_POUND_LBRACK, + [40994] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1096), 1, + STATE(1121), 1, sym_text_interpolation, - ACTIONS(2174), 11, + ACTIONS(2281), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -90875,14 +93776,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40222] = 4, + anon_sym_POUND_LBRACK, + [41018] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1097), 1, + STATE(1122), 1, sym_text_interpolation, - ACTIONS(2176), 11, + ACTIONS(2283), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -90894,14 +93796,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40245] = 4, + anon_sym_POUND_LBRACK, + [41042] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1098), 1, + STATE(1123), 1, sym_text_interpolation, - ACTIONS(2168), 11, + ACTIONS(2285), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -90913,14 +93816,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40268] = 4, + anon_sym_POUND_LBRACK, + [41066] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1099), 1, + STATE(1124), 1, sym_text_interpolation, - ACTIONS(2178), 11, + ACTIONS(2287), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -90932,14 +93836,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40291] = 4, + anon_sym_POUND_LBRACK, + [41090] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1100), 1, + STATE(1125), 1, sym_text_interpolation, - ACTIONS(2180), 11, + ACTIONS(2289), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -90951,14 +93856,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40314] = 4, + anon_sym_POUND_LBRACK, + [41114] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1101), 1, + STATE(1126), 1, sym_text_interpolation, - ACTIONS(2178), 11, + ACTIONS(2291), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -90970,41 +93876,35 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40337] = 12, + anon_sym_POUND_LBRACK, + [41138] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(623), 1, - sym_name, - ACTIONS(2182), 1, - anon_sym_BSLASH, - STATE(653), 1, - sym__reserved_identifier, - STATE(1102), 1, + STATE(1127), 1, sym_text_interpolation, - STATE(1281), 1, - sym_qualified_name, - STATE(1299), 1, - sym_namespace_name_as_prefix, - STATE(1306), 1, - sym_namespace_use_clause, - STATE(1803), 1, - sym_namespace_name, - ACTIONS(2085), 3, + ACTIONS(2293), 12, aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [40376] = 4, + 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, + [41162] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1103), 1, + STATE(1128), 1, sym_text_interpolation, - ACTIONS(2184), 11, + ACTIONS(2295), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -91016,14 +93916,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40399] = 4, + anon_sym_POUND_LBRACK, + [41186] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1104), 1, + STATE(1129), 1, sym_text_interpolation, - ACTIONS(2186), 11, + ACTIONS(1273), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -91035,41 +93936,35 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40422] = 12, + anon_sym_POUND_LBRACK, + [41210] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - STATE(584), 1, - sym__reserved_identifier, - STATE(1105), 1, + STATE(1130), 1, sym_text_interpolation, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1336), 1, - sym_qualified_name, - STATE(1559), 1, - sym_type_list, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(1481), 3, + ACTIONS(2297), 12, aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [40461] = 4, + 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, + [41234] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1106), 1, + STATE(1131), 1, sym_text_interpolation, - ACTIONS(2188), 11, + ACTIONS(1141), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -91081,41 +93976,35 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40484] = 12, + anon_sym_POUND_LBRACK, + [41258] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - STATE(584), 1, - sym__reserved_identifier, - STATE(1107), 1, + STATE(1132), 1, sym_text_interpolation, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1336), 1, - sym_qualified_name, - STATE(1611), 1, - sym_type_list, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(1481), 3, + ACTIONS(2299), 12, aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [40523] = 4, + 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, + [41282] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1108), 1, + STATE(1133), 1, sym_text_interpolation, - ACTIONS(2190), 11, + ACTIONS(2301), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -91127,14 +94016,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40546] = 4, + anon_sym_POUND_LBRACK, + [41306] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1109), 1, + STATE(1134), 1, sym_text_interpolation, - ACTIONS(2192), 11, + ACTIONS(2303), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -91146,14 +94036,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40569] = 4, + anon_sym_POUND_LBRACK, + [41330] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1110), 1, + STATE(1135), 1, sym_text_interpolation, - ACTIONS(916), 11, + ACTIONS(2305), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -91165,41 +94056,35 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40592] = 12, + anon_sym_POUND_LBRACK, + [41354] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(623), 1, - sym_name, - STATE(653), 1, - sym__reserved_identifier, - STATE(1111), 1, + STATE(1136), 1, sym_text_interpolation, - STATE(1281), 1, - sym_qualified_name, - STATE(1299), 1, - sym_namespace_name_as_prefix, - STATE(1517), 1, - sym_namespace_use_clause, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(2085), 3, + ACTIONS(2297), 12, aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [40631] = 4, + 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, + [41378] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1112), 1, + STATE(1137), 1, sym_text_interpolation, - ACTIONS(2194), 11, + ACTIONS(2307), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -91211,14 +94096,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40654] = 4, + anon_sym_POUND_LBRACK, + [41402] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1113), 1, + STATE(1138), 1, sym_text_interpolation, - ACTIONS(2196), 11, + ACTIONS(2305), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -91230,14 +94116,15 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40677] = 4, + anon_sym_POUND_LBRACK, + [41426] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - STATE(1114), 1, + STATE(1139), 1, sym_text_interpolation, - ACTIONS(2198), 11, + ACTIONS(902), 12, aux_sym_function_static_declaration_token1, aux_sym_namespace_use_declaration_token1, aux_sym_namespace_use_declaration_token2, @@ -91249,13819 +94136,15491 @@ static uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [40700] = 9, + anon_sym_POUND_LBRACK, + [41450] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - ACTIONS(2200), 1, - anon_sym_COMMA, - ACTIONS(2202), 1, - anon_sym_RPAREN, - STATE(517), 1, - sym_arguments, - STATE(1115), 1, + STATE(1140), 1, sym_text_interpolation, - STATE(1557), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [40732] = 8, + ACTIONS(2309), 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, + [41474] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_BSLASH, - ACTIONS(2204), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(2206), 1, - aux_sym_use_instead_of_clause_token1, - STATE(1116), 1, + STATE(1141), 1, sym_text_interpolation, - STATE(1764), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1397), 6, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [40762] = 11, + ACTIONS(2307), 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, + [41498] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - STATE(584), 1, - sym__reserved_identifier, - STATE(1117), 1, + STATE(1142), 1, sym_text_interpolation, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1485), 1, - sym_qualified_name, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(1481), 3, + ACTIONS(898), 12, aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [40798] = 9, + 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, + [41522] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - ACTIONS(2200), 1, - anon_sym_COMMA, - ACTIONS(2208), 1, - anon_sym_RPAREN, - STATE(517), 1, - sym_arguments, - STATE(1118), 1, + STATE(1143), 1, sym_text_interpolation, - STATE(1599), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [40830] = 9, + ACTIONS(2311), 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, + [41546] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(785), 1, - anon_sym_COMMA, - ACTIONS(1276), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_RPAREN, - STATE(517), 1, - sym_arguments, - STATE(1119), 1, + STATE(1144), 1, sym_text_interpolation, - STATE(1466), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [40862] = 11, + ACTIONS(2313), 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, + [41570] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(525), 1, - sym_name, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - STATE(584), 1, - sym__reserved_identifier, - STATE(1120), 1, + STATE(1145), 1, sym_text_interpolation, - STATE(1269), 1, - sym_namespace_name_as_prefix, - STATE(1339), 1, - sym_qualified_name, - STATE(1907), 1, - sym_namespace_name, - ACTIONS(1481), 3, + ACTIONS(2315), 12, aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [40898] = 11, + 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, + [41594] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, sym_comment, - ACTIONS(196), 1, - anon_sym_BSLASH, - ACTIONS(531), 1, + STATE(1146), 1, + sym_text_interpolation, + ACTIONS(2315), 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, + [41618] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1147), 1, + sym_text_interpolation, + 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, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [41642] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1148), 1, + sym_text_interpolation, + 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, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [41666] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1149), 1, + sym_text_interpolation, + 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, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [41690] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1150), 1, + sym_text_interpolation, + ACTIONS(1181), 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, + [41714] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(5), 1, + sym_comment, + STATE(1151), 1, + sym_text_interpolation, + 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, + sym_var_modifier, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + anon_sym_POUND_LBRACK, + [41738] = 12, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - ACTIONS(623), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(628), 1, sym_name, - STATE(653), 1, + ACTIONS(2325), 1, + anon_sym_BSLASH, + STATE(688), 1, sym__reserved_identifier, - STATE(1121), 1, + STATE(1152), 1, sym_text_interpolation, - STATE(1299), 1, + STATE(1311), 1, sym_namespace_name_as_prefix, - STATE(1357), 1, + STATE(1351), 1, sym_qualified_name, - STATE(1907), 1, + STATE(1438), 1, + sym_namespace_use_clause, + STATE(1977), 1, sym_namespace_name, - ACTIONS(2085), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [40934] = 11, + [41777] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(525), 1, + ACTIONS(528), 1, sym_name, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - STATE(584), 1, + ACTIONS(592), 1, + sym_comment, + STATE(603), 1, sym__reserved_identifier, - STATE(1122), 1, + STATE(1153), 1, sym_text_interpolation, - STATE(1269), 1, + STATE(1303), 1, sym_namespace_name_as_prefix, - STATE(1555), 1, + STATE(1384), 1, sym_qualified_name, - STATE(1907), 1, + STATE(1681), 1, + sym_attribute, + STATE(1957), 1, sym_namespace_name, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [40970] = 11, + [41816] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(531), 1, - aux_sym_namespace_definition_token1, - ACTIONS(623), 1, + ACTIONS(528), 1, sym_name, - STATE(653), 1, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, + sym_comment, + STATE(603), 1, sym__reserved_identifier, - STATE(1123), 1, + STATE(1154), 1, sym_text_interpolation, - STATE(1186), 1, - sym_qualified_name, - STATE(1299), 1, + STATE(1303), 1, sym_namespace_name_as_prefix, - STATE(1907), 1, + STATE(1389), 1, + sym_qualified_name, + STATE(1672), 1, + sym_type_list, + STATE(1957), 1, sym_namespace_name, - ACTIONS(2085), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41006] = 11, + [41855] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(196), 1, + ACTIONS(197), 1, anon_sym_BSLASH, - ACTIONS(525), 1, + ACTIONS(528), 1, sym_name, - ACTIONS(531), 1, + ACTIONS(534), 1, aux_sym_namespace_definition_token1, - STATE(584), 1, + ACTIONS(592), 1, + sym_comment, + STATE(603), 1, sym__reserved_identifier, - STATE(1124), 1, + STATE(1155), 1, sym_text_interpolation, - STATE(1269), 1, + STATE(1303), 1, sym_namespace_name_as_prefix, - STATE(1431), 1, + STATE(1384), 1, sym_qualified_name, - STATE(1907), 1, + STATE(1888), 1, + sym_attribute, + STATE(1957), 1, sym_namespace_name, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41042] = 9, + [41894] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(2212), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, sym_name, - ACTIONS(2216), 1, - anon_sym_LBRACE, - STATE(583), 1, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, + sym_comment, + STATE(603), 1, sym__reserved_identifier, - STATE(1125), 1, + STATE(1156), 1, sym_text_interpolation, - STATE(511), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2214), 3, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1389), 1, + sym_qualified_name, + STATE(1707), 1, + sym_type_list, + STATE(1957), 1, + sym_namespace_name, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41073] = 8, + [41933] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1772), 1, - anon_sym_DOLLAR, - ACTIONS(2218), 1, + ACTIONS(628), 1, sym_name, - ACTIONS(2220), 1, - anon_sym_LBRACE, - STATE(1126), 1, + STATE(688), 1, + sym__reserved_identifier, + STATE(1157), 1, sym_text_interpolation, - ACTIONS(2085), 3, + STATE(1311), 1, + sym_namespace_name_as_prefix, + STATE(1351), 1, + sym_qualified_name, + STATE(1572), 1, + sym_namespace_use_clause, + STATE(1957), 1, + sym_namespace_name, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(683), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [41102] = 9, + [41972] = 12, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(2212), 1, + ACTIONS(628), 1, sym_name, - ACTIONS(2216), 1, - anon_sym_LBRACE, - STATE(583), 1, + ACTIONS(2327), 1, + anon_sym_BSLASH, + STATE(688), 1, sym__reserved_identifier, - STATE(1127), 1, + STATE(1158), 1, sym_text_interpolation, - STATE(612), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1481), 3, + STATE(1311), 1, + sym_namespace_name_as_prefix, + STATE(1351), 1, + sym_qualified_name, + STATE(1378), 1, + sym_namespace_use_clause, + STATE(2070), 1, + sym_namespace_name, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41133] = 8, + [42011] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(2222), 1, - sym_name, - ACTIONS(2224), 1, - anon_sym_LBRACE, - STATE(1128), 1, + ACTIONS(772), 1, + anon_sym_COMMA, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(2329), 1, + anon_sym_RPAREN, + STATE(532), 1, + sym_arguments, + STATE(1159), 1, + sym_text_interpolation, + STATE(1527), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [42043] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, + sym_comment, + STATE(603), 1, + sym__reserved_identifier, + STATE(1160), 1, sym_text_interpolation, - ACTIONS(2214), 3, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1671), 1, + sym_qualified_name, + STATE(1957), 1, + sym_namespace_name, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(597), 3, - sym_dynamic_variable_name, - sym_variable_name, + [42079] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, + sym_comment, + STATE(603), 1, sym__reserved_identifier, - [41162] = 8, + STATE(1161), 1, + sym_text_interpolation, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1387), 1, + sym_qualified_name, + STATE(1957), 1, + sym_namespace_name, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [42115] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(2226), 1, - sym_name, - ACTIONS(2230), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(2331), 1, + anon_sym_COMMA, + ACTIONS(2333), 1, + anon_sym_RPAREN, + STATE(532), 1, + sym_arguments, + STATE(1162), 1, + sym_text_interpolation, + STATE(1695), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1371), 5, anon_sym_LBRACE, - STATE(1129), 1, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [42147] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, + sym_comment, + STATE(603), 1, + sym__reserved_identifier, + STATE(1163), 1, sym_text_interpolation, - ACTIONS(2228), 3, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1495), 1, + sym_qualified_name, + STATE(1957), 1, + sym_namespace_name, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(508), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [41191] = 8, + [42183] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(2232), 1, + ACTIONS(628), 1, sym_name, - ACTIONS(2234), 1, - anon_sym_LBRACE, - STATE(1130), 1, + STATE(688), 1, + sym__reserved_identifier, + STATE(1164), 1, sym_text_interpolation, - ACTIONS(2214), 3, + STATE(1311), 1, + sym_namespace_name_as_prefix, + STATE(1473), 1, + sym_qualified_name, + STATE(1957), 1, + sym_namespace_name, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(600), 3, - sym_dynamic_variable_name, - sym_variable_name, - sym__reserved_identifier, - [41220] = 7, + [42219] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1472), 1, + anon_sym_BSLASH, + ACTIONS(2335), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2337), 1, + aux_sym_use_instead_of_clause_token1, + STATE(1165), 1, + sym_text_interpolation, + STATE(1764), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1470), 6, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [42249] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(517), 1, + ACTIONS(2331), 1, + anon_sym_COMMA, + ACTIONS(2339), 1, + anon_sym_RPAREN, + STATE(532), 1, sym_arguments, - STATE(1131), 1, + STATE(1166), 1, sym_text_interpolation, - ACTIONS(2236), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1298), 5, + STATE(1701), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [41247] = 9, + [42281] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(528), 1, + sym_name, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, + sym_comment, + STATE(603), 1, + sym__reserved_identifier, + STATE(1167), 1, + sym_text_interpolation, + STATE(1303), 1, + sym_namespace_name_as_prefix, + STATE(1584), 1, + sym_qualified_name, + STATE(1957), 1, + sym_namespace_name, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [42317] = 11, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(197), 1, + anon_sym_BSLASH, + ACTIONS(534), 1, + aux_sym_namespace_definition_token1, + ACTIONS(592), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(628), 1, + sym_name, + STATE(688), 1, + sym__reserved_identifier, + STATE(1168), 1, + sym_text_interpolation, + STATE(1283), 1, + sym_qualified_name, + STATE(1311), 1, + sym_namespace_name_as_prefix, + STATE(1957), 1, + sym_namespace_name, + ACTIONS(2241), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [42353] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(281), 1, anon_sym_DOLLAR, - ACTIONS(2238), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2341), 1, sym_name, - ACTIONS(2240), 1, + ACTIONS(2345), 1, anon_sym_LBRACE, - STATE(1132), 1, + STATE(1169), 1, sym_text_interpolation, - STATE(1176), 1, - sym__reserved_identifier, - STATE(530), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1481), 3, + ACTIONS(2343), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41278] = 7, + STATE(553), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [42382] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(517), 1, + STATE(532), 1, sym_arguments, - STATE(1133), 1, + STATE(1170), 1, sym_text_interpolation, - ACTIONS(2242), 2, + ACTIONS(2347), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1298), 5, + anon_sym_RBRACK, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [41305] = 9, + [42409] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1776), 1, + ACTIONS(578), 1, anon_sym_DOLLAR, - ACTIONS(2244), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2349), 1, sym_name, - ACTIONS(2246), 1, + ACTIONS(2353), 1, anon_sym_LBRACE, - STATE(1134), 1, + STATE(1171), 1, sym_text_interpolation, - STATE(1177), 1, - sym__reserved_identifier, - STATE(604), 2, + ACTIONS(2351), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(529), 3, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(1481), 3, + sym__reserved_identifier, + [42438] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2355), 1, + sym_name, + ACTIONS(2357), 1, + anon_sym_LBRACE, + STATE(1172), 1, + sym_text_interpolation, + ACTIONS(2351), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41336] = 9, + STATE(528), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [42467] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1772), 1, + ACTIONS(578), 1, anon_sym_DOLLAR, - ACTIONS(2212), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2359), 1, sym_name, - ACTIONS(2216), 1, + ACTIONS(2361), 1, anon_sym_LBRACE, - STATE(583), 1, + STATE(601), 1, sym__reserved_identifier, - STATE(1135), 1, + STATE(1173), 1, sym_text_interpolation, - STATE(652), 2, + STATE(530), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41367] = 8, + [42498] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(1877), 1, anon_sym_DOLLAR, - ACTIONS(2248), 1, + ACTIONS(2363), 1, sym_name, - ACTIONS(2250), 1, + ACTIONS(2367), 1, anon_sym_LBRACE, - STATE(1136), 1, + STATE(1174), 1, sym_text_interpolation, - ACTIONS(1481), 3, + ACTIONS(2365), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(512), 3, + STATE(606), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [41396] = 8, + [42527] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1776), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR, - ACTIONS(2252), 1, + ACTIONS(2369), 1, sym_name, - ACTIONS(2254), 1, + ACTIONS(2371), 1, anon_sym_LBRACE, - STATE(1137), 1, + STATE(1175), 1, sym_text_interpolation, - ACTIONS(2214), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(609), 3, + STATE(674), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [41425] = 8, + [42556] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1776), 1, + ACTIONS(1877), 1, anon_sym_DOLLAR, - ACTIONS(2256), 1, + ACTIONS(2373), 1, sym_name, - ACTIONS(2258), 1, + ACTIONS(2375), 1, anon_sym_LBRACE, - STATE(1138), 1, + STATE(1176), 1, sym_text_interpolation, - ACTIONS(2214), 3, + ACTIONS(2365), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(606), 3, + STATE(607), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [41454] = 7, + [42585] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - STATE(517), 1, - sym_arguments, - STATE(1139), 1, - sym_text_interpolation, - ACTIONS(2260), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1298), 5, + ACTIONS(2359), 1, + sym_name, + ACTIONS(2361), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [41481] = 8, + STATE(601), 1, + sym__reserved_identifier, + STATE(1177), 1, + sym_text_interpolation, + STATE(530), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2365), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [42616] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR, - ACTIONS(2248), 1, + ACTIONS(2377), 1, sym_name, - ACTIONS(2250), 1, + ACTIONS(2379), 1, anon_sym_LBRACE, - STATE(1140), 1, + STATE(1178), 1, sym_text_interpolation, - ACTIONS(2228), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(512), 3, + STATE(693), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [41510] = 8, + [42645] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1776), 1, + ACTIONS(1877), 1, anon_sym_DOLLAR, - ACTIONS(2262), 1, + ACTIONS(2359), 1, sym_name, - ACTIONS(2264), 1, + ACTIONS(2361), 1, anon_sym_LBRACE, - STATE(1141), 1, + STATE(601), 1, + sym__reserved_identifier, + STATE(1179), 1, sym_text_interpolation, - ACTIONS(2214), 3, + STATE(617), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(587), 3, + [42676] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1871), 1, + anon_sym_DOLLAR, + ACTIONS(2381), 1, + sym_name, + ACTIONS(2383), 1, + anon_sym_LBRACE, + STATE(1180), 1, + sym_text_interpolation, + STATE(1225), 1, + sym__reserved_identifier, + STATE(699), 2, sym_dynamic_variable_name, sym_variable_name, - sym__reserved_identifier, - [41539] = 8, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [42707] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1772), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR, - ACTIONS(2266), 1, + ACTIONS(2385), 1, sym_name, - ACTIONS(2268), 1, + ACTIONS(2387), 1, anon_sym_LBRACE, - STATE(1142), 1, + STATE(1181), 1, sym_text_interpolation, - ACTIONS(2085), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(658), 3, + STATE(671), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [41568] = 8, + [42736] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1776), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR, - ACTIONS(2270), 1, + ACTIONS(2359), 1, sym_name, - ACTIONS(2272), 1, + ACTIONS(2361), 1, anon_sym_LBRACE, - STATE(1143), 1, + STATE(601), 1, + sym__reserved_identifier, + STATE(1182), 1, sym_text_interpolation, - ACTIONS(2214), 3, + STATE(692), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(607), 3, + [42767] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_DOLLAR, + ACTIONS(2359), 1, + sym_name, + ACTIONS(2361), 1, + anon_sym_LBRACE, + STATE(601), 1, + sym__reserved_identifier, + STATE(1183), 1, + sym_text_interpolation, + STATE(622), 2, sym_dynamic_variable_name, sym_variable_name, - sym__reserved_identifier, - [41597] = 8, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [42798] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1772), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(532), 1, + sym_arguments, + STATE(1184), 1, + sym_text_interpolation, + ACTIONS(2389), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [42825] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(578), 1, anon_sym_DOLLAR, - ACTIONS(2274), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2355), 1, sym_name, - ACTIONS(2276), 1, + ACTIONS(2357), 1, anon_sym_LBRACE, - STATE(1144), 1, + STATE(1185), 1, sym_text_interpolation, - ACTIONS(2085), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(670), 3, + STATE(528), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [41626] = 9, + [42854] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(575), 1, + ACTIONS(578), 1, anon_sym_DOLLAR, - ACTIONS(2212), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2349), 1, sym_name, - ACTIONS(2216), 1, + ACTIONS(2353), 1, anon_sym_LBRACE, - STATE(583), 1, - sym__reserved_identifier, - STATE(1145), 1, + STATE(1186), 1, sym_text_interpolation, - STATE(511), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41657] = 9, + STATE(529), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [42883] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1772), 1, + ACTIONS(1877), 1, anon_sym_DOLLAR, - ACTIONS(2278), 1, + ACTIONS(2391), 1, sym_name, - ACTIONS(2280), 1, + ACTIONS(2393), 1, anon_sym_LBRACE, - STATE(1146), 1, + STATE(1187), 1, sym_text_interpolation, - STATE(1172), 1, + STATE(1214), 1, sym__reserved_identifier, - STATE(684), 2, + STATE(618), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41688] = 8, + [42914] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1772), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR, - ACTIONS(2282), 1, + ACTIONS(2395), 1, sym_name, - ACTIONS(2284), 1, + ACTIONS(2397), 1, anon_sym_LBRACE, - STATE(1147), 1, + STATE(1188), 1, sym_text_interpolation, - ACTIONS(2085), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(676), 3, + STATE(675), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [41717] = 9, + [42943] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1776), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR, - ACTIONS(2212), 1, + ACTIONS(2359), 1, sym_name, - ACTIONS(2216), 1, + ACTIONS(2361), 1, anon_sym_LBRACE, - STATE(583), 1, + STATE(601), 1, sym__reserved_identifier, - STATE(1148), 1, + STATE(1189), 1, sym_text_interpolation, - STATE(605), 2, + STATE(673), 2, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41748] = 9, + [42974] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_DOLLAR, - ACTIONS(2240), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(532), 1, + sym_arguments, + STATE(1190), 1, + sym_text_interpolation, + ACTIONS(2399), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1371), 5, anon_sym_LBRACE, - ACTIONS(2286), 1, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [43001] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1871), 1, + anon_sym_DOLLAR, + ACTIONS(2401), 1, sym_name, - STATE(686), 1, - sym__reserved_identifier, - STATE(1149), 1, + ACTIONS(2403), 1, + anon_sym_LBRACE, + STATE(1191), 1, sym_text_interpolation, - STATE(530), 2, - sym_dynamic_variable_name, - sym_variable_name, - ACTIONS(2085), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41779] = 8, + STATE(704), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [43030] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1772), 1, + ACTIONS(1871), 1, anon_sym_DOLLAR, - ACTIONS(2288), 1, + ACTIONS(2405), 1, sym_name, - ACTIONS(2290), 1, + ACTIONS(2407), 1, anon_sym_LBRACE, - STATE(1150), 1, + STATE(1192), 1, sym_text_interpolation, - ACTIONS(2085), 3, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(681), 3, + STATE(703), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [41808] = 8, + [43059] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(278), 1, + ACTIONS(281), 1, anon_sym_DOLLAR, - ACTIONS(2292), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2409), 1, sym_name, - ACTIONS(2296), 1, + ACTIONS(2411), 1, anon_sym_LBRACE, - STATE(1151), 1, + STATE(689), 1, + sym__reserved_identifier, + STATE(1193), 1, sym_text_interpolation, - ACTIONS(2294), 3, + STATE(555), 2, + sym_dynamic_variable_name, + sym_variable_name, + ACTIONS(2241), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(540), 3, + [43090] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(281), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2411), 1, + anon_sym_LBRACE, + ACTIONS(2413), 1, + sym_name, + STATE(1194), 1, + sym_text_interpolation, + STATE(1220), 1, + sym__reserved_identifier, + STATE(555), 2, sym_dynamic_variable_name, sym_variable_name, - sym__reserved_identifier, - [41837] = 8, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [43121] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(278), 1, + ACTIONS(1877), 1, anon_sym_DOLLAR, - ACTIONS(2298), 1, + ACTIONS(2415), 1, sym_name, - ACTIONS(2300), 1, + ACTIONS(2417), 1, anon_sym_LBRACE, - STATE(1152), 1, + STATE(1195), 1, sym_text_interpolation, - ACTIONS(2294), 3, + ACTIONS(2365), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(542), 3, + STATE(616), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [41866] = 9, + [43150] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1772), 1, + ACTIONS(1877), 1, anon_sym_DOLLAR, - ACTIONS(2212), 1, + ACTIONS(2419), 1, sym_name, - ACTIONS(2216), 1, + ACTIONS(2421), 1, anon_sym_LBRACE, - STATE(583), 1, - sym__reserved_identifier, - STATE(1153), 1, + STATE(1196), 1, sym_text_interpolation, - STATE(659), 2, + ACTIONS(2365), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + STATE(613), 3, sym_dynamic_variable_name, sym_variable_name, - ACTIONS(1481), 3, + sym__reserved_identifier, + [43179] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(281), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2423), 1, + sym_name, + ACTIONS(2425), 1, + anon_sym_LBRACE, + STATE(1197), 1, + sym_text_interpolation, + ACTIONS(2343), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [41897] = 8, + STATE(552), 3, + sym_dynamic_variable_name, + sym_variable_name, + sym__reserved_identifier, + [43208] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1772), 1, + ACTIONS(1877), 1, anon_sym_DOLLAR, - ACTIONS(2302), 1, + ACTIONS(2427), 1, sym_name, - ACTIONS(2304), 1, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(1154), 1, + STATE(1198), 1, sym_text_interpolation, - ACTIONS(2085), 3, + ACTIONS(2365), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(680), 3, + STATE(626), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [41926] = 8, + [43237] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(575), 1, + ACTIONS(1877), 1, anon_sym_DOLLAR, - ACTIONS(2226), 1, + ACTIONS(2431), 1, sym_name, - ACTIONS(2230), 1, + ACTIONS(2433), 1, anon_sym_LBRACE, - STATE(1155), 1, + STATE(1199), 1, sym_text_interpolation, - ACTIONS(1481), 3, + ACTIONS(2365), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - STATE(508), 3, + STATE(625), 3, sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [41955] = 7, + [43266] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2200), 1, + ACTIONS(2435), 1, + sym_name, + ACTIONS(2437), 1, + anon_sym_AMP, + ACTIONS(2439), 1, + anon_sym_LPAREN, + STATE(1200), 1, + sym_text_interpolation, + STATE(1229), 1, + sym_formal_parameters, + STATE(1876), 1, + sym__reserved_identifier, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [43296] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(772), 1, anon_sym_COMMA, - ACTIONS(2202), 1, + ACTIONS(2329), 1, anon_sym_RPAREN, - STATE(1156), 1, + STATE(1201), 1, sym_text_interpolation, - STATE(1557), 1, - aux_sym_unset_statement_repeat1, - ACTIONS(1298), 5, + STATE(1527), 1, + aux_sym__list_destructing_repeat1, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [41981] = 7, + [43322] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(2441), 1, + anon_sym_LBRACE, + ACTIONS(2443), 1, + aux_sym_base_clause_token1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + STATE(905), 1, + sym_declaration_list, + STATE(1202), 1, + sym_text_interpolation, + STATE(1258), 1, + sym_arguments, + STATE(1432), 1, + sym_base_clause, + STATE(1748), 1, + sym_class_interface_clause, + [43356] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(785), 1, + ACTIONS(2331), 1, anon_sym_COMMA, - ACTIONS(2210), 1, + ACTIONS(2339), 1, anon_sym_RPAREN, - STATE(1157), 1, + STATE(1203), 1, sym_text_interpolation, - STATE(1466), 1, - aux_sym__list_destructing_repeat1, - ACTIONS(1298), 5, + STATE(1701), 1, + aux_sym_unset_statement_repeat1, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42007] = 8, + [43382] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(853), 1, + ACTIONS(866), 1, aux_sym_else_clause_token1, - ACTIONS(2306), 1, + ACTIONS(2447), 1, aux_sym_catch_clause_token1, - ACTIONS(2309), 1, + ACTIONS(2450), 1, aux_sym_finally_clause_token1, - ACTIONS(851), 2, + ACTIONS(864), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - STATE(1158), 2, + STATE(1204), 2, sym_text_interpolation, aux_sym_try_statement_repeat1, - STATE(1262), 2, + STATE(1325), 2, sym_catch_clause, sym_finally_clause, - [42035] = 9, + [43410] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(863), 1, + ACTIONS(858), 1, aux_sym_else_clause_token1, - ACTIONS(2312), 1, + ACTIONS(2453), 1, aux_sym_catch_clause_token1, - ACTIONS(2314), 1, + ACTIONS(2455), 1, aux_sym_finally_clause_token1, - STATE(1158), 1, + STATE(1204), 1, aux_sym_try_statement_repeat1, - STATE(1159), 1, + STATE(1205), 1, sym_text_interpolation, - ACTIONS(861), 2, + ACTIONS(856), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - STATE(1262), 2, + STATE(1325), 2, sym_catch_clause, sym_finally_clause, - [42065] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2316), 1, - sym_name, - ACTIONS(2318), 1, - anon_sym_AMP, - ACTIONS(2320), 1, - anon_sym_LPAREN, - STATE(1160), 1, - sym_text_interpolation, - STATE(1199), 1, - sym_formal_parameters, - STATE(1685), 1, - sym__reserved_identifier, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [42095] = 11, + [43440] = 11, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(2322), 1, - anon_sym_LBRACE, - ACTIONS(2324), 1, + ACTIONS(2443), 1, aux_sym_base_clause_token1, - ACTIONS(2326), 1, + ACTIONS(2445), 1, aux_sym_class_interface_clause_token1, - STATE(743), 1, + ACTIONS(2457), 1, + anon_sym_LBRACE, + STATE(740), 1, sym_declaration_list, - STATE(1161), 1, + STATE(1206), 1, sym_text_interpolation, - STATE(1207), 1, - sym_arguments, - STATE(1355), 1, - sym_base_clause, - STATE(1701), 1, - sym_class_interface_clause, - [42129] = 11, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - ACTIONS(2324), 1, - aux_sym_base_clause_token1, - ACTIONS(2326), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2328), 1, - anon_sym_LBRACE, - STATE(879), 1, - sym_declaration_list, - STATE(1162), 1, - sym_text_interpolation, - STATE(1183), 1, + STATE(1237), 1, sym_arguments, - STATE(1384), 1, + STATE(1459), 1, sym_base_clause, - STATE(1753), 1, + STATE(1813), 1, sym_class_interface_clause, - [42163] = 7, + [43474] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2200), 1, + ACTIONS(2331), 1, anon_sym_COMMA, - ACTIONS(2208), 1, + ACTIONS(2333), 1, anon_sym_RPAREN, - STATE(1163), 1, + STATE(1207), 1, sym_text_interpolation, - STATE(1599), 1, + STATE(1695), 1, aux_sym_unset_statement_repeat1, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42189] = 6, + [43500] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - STATE(630), 1, + STATE(570), 1, sym_arguments, - STATE(1164), 1, + STATE(1208), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42212] = 7, + [43523] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2332), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2335), 1, - aux_sym_case_statement_token1, - ACTIONS(2330), 2, - anon_sym_RBRACE, - aux_sym_switch_block_token1, - STATE(1165), 2, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(2459), 1, + sym_name, + STATE(1209), 1, sym_text_interpolation, - aux_sym_switch_block_repeat1, - STATE(1331), 2, - sym_case_statement, - sym_default_statement, - [42237] = 6, + STATE(1254), 1, + sym_formal_parameters, + STATE(1845), 1, + sym__reserved_identifier, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [43550] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1491), 1, anon_sym_LPAREN, - STATE(630), 1, + STATE(650), 1, sym_arguments, - STATE(1166), 1, + STATE(1210), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42260] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2338), 1, - sym_name, - STATE(1167), 1, - sym_text_interpolation, - STATE(1221), 1, - sym_formal_parameters, - STATE(1792), 1, - sym__reserved_identifier, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [42287] = 6, + [43573] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - STATE(517), 1, - sym_arguments, - STATE(1168), 1, + ACTIONS(2335), 1, + aux_sym_namespace_aliasing_clause_token1, + ACTIONS(2337), 1, + aux_sym_use_instead_of_clause_token1, + STATE(1211), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42310] = 6, + [43596] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_LPAREN, - STATE(688), 1, - sym_arguments, - STATE(1169), 1, + STATE(1212), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(2399), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42333] = 6, + [43617] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_LPAREN, - STATE(688), 1, - sym_arguments, - STATE(1170), 1, + STATE(1213), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(2347), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42356] = 6, + [43638] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2204), 1, - aux_sym_namespace_aliasing_clause_token1, - ACTIONS(2206), 1, - aux_sym_use_instead_of_clause_token1, - STATE(1171), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + STATE(632), 1, + sym_arguments, + STATE(1214), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1483), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42379] = 6, + [43661] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(706), 1, + STATE(532), 1, sym_arguments, - STATE(1172), 1, + STATE(1215), 1, sym_text_interpolation, - ACTIONS(1408), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42402] = 5, + [43684] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1173), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(711), 1, + sym_arguments, + STATE(1216), 1, sym_text_interpolation, - ACTIONS(2260), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42423] = 6, + [43707] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - STATE(558), 1, + STATE(570), 1, sym_arguments, - STATE(1174), 1, + STATE(1217), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42446] = 6, + [43730] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(558), 1, + STATE(711), 1, sym_arguments, - STATE(1175), 1, + STATE(1218), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42469] = 6, + [43753] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1491), 1, anon_sym_LPAREN, - STATE(547), 1, + STATE(650), 1, sym_arguments, - STATE(1176), 1, + STATE(1219), 1, sym_text_interpolation, - ACTIONS(1408), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42492] = 6, + [43776] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - STATE(632), 1, + STATE(564), 1, sym_arguments, - STATE(1177), 1, + STATE(1220), 1, sym_text_interpolation, - ACTIONS(1408), 5, + ACTIONS(1483), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42515] = 6, + [43799] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - STATE(517), 1, + STATE(532), 1, sym_arguments, - STATE(1178), 1, + STATE(1221), 1, sym_text_interpolation, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42538] = 5, + [43822] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1179), 1, + STATE(1222), 1, sym_text_interpolation, - ACTIONS(2242), 2, + ACTIONS(2389), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1298), 5, + ACTIONS(1371), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42559] = 7, + [43843] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2463), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2466), 1, + aux_sym_case_statement_token1, + ACTIONS(2461), 2, + anon_sym_RBRACE, + aux_sym_switch_block_token1, + STATE(1223), 2, + sym_text_interpolation, + aux_sym_switch_block_repeat1, + STATE(1373), 2, + sym_case_statement, + sym_default_statement, + [43868] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(2342), 1, + ACTIONS(2471), 1, sym_integer, - STATE(1180), 1, + STATE(1224), 1, sym_text_interpolation, - STATE(1908), 1, + STATE(2031), 1, sym__string, - ACTIONS(573), 2, + ACTIONS(576), 2, sym_heredoc, sym_string, - ACTIONS(2340), 3, + ACTIONS(2469), 3, sym_float, sym_boolean, sym_null, - [42584] = 5, + [43893] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1181), 1, + ACTIONS(1558), 1, + anon_sym_LPAREN, + STATE(724), 1, + sym_arguments, + STATE(1225), 1, sym_text_interpolation, - ACTIONS(2236), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1298), 5, + ACTIONS(1483), 5, anon_sym_LBRACE, anon_sym_COLON_COLON, anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [42605] = 8, + [43916] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2344), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2346), 1, - aux_sym_switch_block_token1, - ACTIONS(2348), 1, - aux_sym_case_statement_token1, - STATE(1182), 1, + ACTIONS(874), 1, + aux_sym_while_statement_token1, + ACTIONS(2473), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2476), 1, + aux_sym_else_clause_token1, + STATE(1226), 1, sym_text_interpolation, - STATE(1193), 1, - aux_sym_switch_block_repeat1, - STATE(1331), 2, - sym_case_statement, - sym_default_statement, - [42631] = 9, + STATE(1243), 1, + aux_sym_if_statement_repeat1, + STATE(1579), 1, + sym_else_clause, + STATE(1580), 1, + sym_else_if_clause, + [43944] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2324), 1, - aux_sym_base_clause_token1, - ACTIONS(2326), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2328), 1, + ACTIONS(2481), 1, anon_sym_LBRACE, - STATE(912), 1, - sym_declaration_list, - STATE(1183), 1, + STATE(1227), 1, sym_text_interpolation, - STATE(1324), 1, - sym_base_clause, - STATE(1651), 1, - sym_class_interface_clause, - [42659] = 6, + STATE(1768), 1, + sym_namespace_use_group, + ACTIONS(2479), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [43966] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2352), 1, + ACTIONS(2481), 1, anon_sym_LBRACE, - STATE(1184), 1, + STATE(1228), 1, sym_text_interpolation, - STATE(1797), 1, + STATE(1833), 1, sym_namespace_use_group, - ACTIONS(2350), 4, + ACTIONS(2483), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [42681] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2344), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2348), 1, - aux_sym_case_statement_token1, - ACTIONS(2354), 1, - aux_sym_switch_block_token1, - STATE(1185), 1, - sym_text_interpolation, - STATE(1197), 1, - aux_sym_switch_block_repeat1, - STATE(1331), 2, - sym_case_statement, - sym_default_statement, - [42707] = 8, + [43988] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2358), 1, - anon_sym_COMMA, - ACTIONS(2360), 1, + ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2487), 1, anon_sym_LBRACE, - STATE(1103), 1, - sym_use_list, - STATE(1186), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + STATE(913), 1, + sym_compound_statement, + STATE(1229), 1, sym_text_interpolation, - STATE(1219), 1, - aux_sym_base_clause_repeat1, - ACTIONS(2356), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [42733] = 9, + STATE(1408), 1, + sym_anonymous_function_use_clause, + STATE(1812), 1, + sym__return_type, + [44016] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - ACTIONS(2362), 1, - aux_sym_if_statement_token2, - ACTIONS(2364), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2366), 1, - aux_sym_else_clause_token1, - STATE(1187), 1, + ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2489), 1, + anon_sym_COLON, + STATE(767), 1, + sym_compound_statement, + STATE(1230), 1, sym_text_interpolation, - STATE(1215), 1, - aux_sym_if_statement_repeat2, - STATE(1563), 1, - sym_else_if_clause_2, - STATE(1918), 1, - sym_else_clause_2, - [42761] = 9, + STATE(1468), 1, + sym_anonymous_function_use_clause, + STATE(1872), 1, + sym__return_type, + [44044] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2324), 1, + ACTIONS(2441), 1, + anon_sym_LBRACE, + ACTIONS(2443), 1, aux_sym_base_clause_token1, - ACTIONS(2326), 1, + ACTIONS(2445), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2328), 1, - anon_sym_LBRACE, - STATE(1188), 1, + STATE(1231), 1, sym_text_interpolation, - STATE(1264), 1, + STATE(1326), 1, sym_declaration_list, - STATE(1346), 1, + STATE(1470), 1, sym_base_clause, - STATE(1690), 1, + STATE(1869), 1, sym_class_interface_clause, - [42789] = 9, + [44072] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - ACTIONS(2368), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2370), 1, - anon_sym_COLON, - STATE(728), 1, - sym_compound_statement, - STATE(1189), 1, - sym_text_interpolation, - STATE(1342), 1, - sym_anonymous_function_use_clause, - STATE(1680), 1, - sym__return_type, - [42817] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2352), 1, + ACTIONS(2481), 1, anon_sym_LBRACE, - STATE(1190), 1, + STATE(1232), 1, sym_text_interpolation, - STATE(1732), 1, + STATE(1832), 1, sym_namespace_use_group, - ACTIONS(2350), 4, + ACTIONS(2483), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [42839] = 6, + [44094] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2352), 1, + ACTIONS(2443), 1, + aux_sym_base_clause_token1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2491), 1, anon_sym_LBRACE, - STATE(1191), 1, + STATE(424), 1, + sym_declaration_list, + STATE(1233), 1, sym_text_interpolation, - STATE(1783), 1, - sym_namespace_use_group, - ACTIONS(2372), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [42861] = 7, + STATE(1399), 1, + sym_base_clause, + STATE(1801), 1, + sym_class_interface_clause, + [44122] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(2493), 1, sym_name, - STATE(1192), 1, + STATE(1234), 1, sym_text_interpolation, - STATE(1363), 1, + STATE(1467), 1, sym_const_element, - STATE(1870), 1, + STATE(1928), 1, sym__reserved_identifier, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [42885] = 8, + [44146] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2344), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2348), 1, - aux_sym_case_statement_token1, - ACTIONS(2376), 1, - aux_sym_switch_block_token1, - STATE(1165), 1, - aux_sym_switch_block_repeat1, - STATE(1193), 1, + ACTIONS(2495), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2497), 1, + aux_sym_class_declaration_token1, + STATE(1235), 1, sym_text_interpolation, - STATE(1331), 2, - sym_case_statement, - sym_default_statement, - [42911] = 9, + STATE(1751), 1, + sym__function_definition_header, + STATE(1976), 1, + sym_class_modifier, + ACTIONS(2190), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + [44172] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, + ACTIONS(2441), 1, anon_sym_LBRACE, - ACTIONS(2368), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2370), 1, - anon_sym_COLON, - STATE(755), 1, - sym_compound_statement, - STATE(1194), 1, + ACTIONS(2443), 1, + aux_sym_base_clause_token1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + STATE(1236), 1, sym_text_interpolation, - STATE(1369), 1, - sym_anonymous_function_use_clause, - STATE(1731), 1, - sym__return_type, - [42939] = 6, + STATE(1315), 1, + sym_declaration_list, + STATE(1474), 1, + sym_base_clause, + STATE(1863), 1, + sym_class_interface_clause, + [44200] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_BSLASH, - STATE(1195), 1, + ACTIONS(2443), 1, + aux_sym_base_clause_token1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2457), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_declaration_list, + STATE(1237), 1, sym_text_interpolation, - STATE(1764), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(1397), 4, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [42961] = 8, + STATE(1484), 1, + sym_base_clause, + STATE(1861), 1, + sym_class_interface_clause, + [44228] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2344), 1, + ACTIONS(2499), 1, + anon_sym_RBRACE, + ACTIONS(2501), 1, aux_sym_match_default_expression_token1, - ACTIONS(2348), 1, + ACTIONS(2503), 1, aux_sym_case_statement_token1, - ACTIONS(2378), 1, - anon_sym_RBRACE, - STATE(1165), 1, - aux_sym_switch_block_repeat1, - STATE(1196), 1, + STATE(1238), 1, sym_text_interpolation, - STATE(1331), 2, + STATE(1274), 1, + aux_sym_switch_block_repeat1, + STATE(1373), 2, sym_case_statement, sym_default_statement, - [42987] = 8, + [44254] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2344), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2348), 1, - aux_sym_case_statement_token1, - ACTIONS(2380), 1, - aux_sym_switch_block_token1, - STATE(1165), 1, - aux_sym_switch_block_repeat1, - STATE(1197), 1, + ACTIONS(2493), 1, + sym_name, + STATE(1239), 1, sym_text_interpolation, - STATE(1331), 2, - sym_case_statement, - sym_default_statement, - [43013] = 9, + STATE(1452), 1, + sym_const_element, + STATE(1928), 1, + sym__reserved_identifier, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [44278] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2364), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2366), 1, - aux_sym_else_clause_token1, - ACTIONS(2382), 1, - aux_sym_if_statement_token2, - STATE(1198), 1, + STATE(1240), 1, sym_text_interpolation, - STATE(1275), 1, - aux_sym_if_statement_repeat2, - STATE(1563), 1, - sym_else_if_clause_2, - STATE(1860), 1, - sym_else_clause_2, - [43041] = 9, + ACTIONS(2505), 6, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [44296] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2368), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2384), 1, - anon_sym_LBRACE, - STATE(874), 1, - sym_compound_statement, - STATE(1199), 1, + STATE(1241), 1, sym_text_interpolation, - STATE(1392), 1, - sym_anonymous_function_use_clause, - STATE(1777), 1, - sym__return_type, - [43069] = 7, + ACTIONS(2507), 6, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [44314] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(2493), 1, sym_name, - STATE(1200), 1, + STATE(1242), 1, sym_text_interpolation, - STATE(1347), 1, + STATE(1400), 1, sym_const_element, - STATE(1870), 1, + STATE(1928), 1, sym__reserved_identifier, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [43093] = 7, + [44338] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2374), 1, - sym_name, - STATE(1201), 1, + ACTIONS(884), 1, + aux_sym_while_statement_token1, + ACTIONS(2509), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2512), 1, + aux_sym_else_clause_token1, + STATE(1243), 1, sym_text_interpolation, - STATE(1312), 1, - sym_const_element, - STATE(1870), 1, - sym__reserved_identifier, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [43117] = 7, + STATE(1362), 1, + aux_sym_if_statement_repeat1, + STATE(1510), 1, + sym_else_clause, + STATE(1580), 1, + sym_else_if_clause, + [44366] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2493), 1, sym_name, - ACTIONS(2388), 1, - anon_sym_AMP, - STATE(1202), 1, + STATE(1244), 1, sym_text_interpolation, - STATE(1636), 1, + STATE(1425), 1, + sym_const_element, + STATE(1928), 1, sym__reserved_identifier, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [43141] = 9, + [44390] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2324), 1, - aux_sym_base_clause_token1, - ACTIONS(2326), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2390), 1, - anon_sym_LBRACE, - STATE(412), 1, - sym_declaration_list, - STATE(1203), 1, + STATE(1245), 1, sym_text_interpolation, - STATE(1389), 1, - sym_base_clause, - STATE(1771), 1, - sym_class_interface_clause, - [43169] = 8, + ACTIONS(2515), 6, + anon_sym_LBRACE, + anon_sym_AMP, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [44408] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - ACTIONS(2344), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2348), 1, - aux_sym_case_statement_token1, - ACTIONS(2392), 1, - anon_sym_RBRACE, - STATE(1204), 1, + ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2489), 1, + anon_sym_COLON, + STATE(742), 1, + sym_compound_statement, + STATE(1246), 1, sym_text_interpolation, - STATE(1218), 1, + STATE(1475), 1, + sym_anonymous_function_use_clause, + STATE(1820), 1, + sym__return_type, + [44436] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2481), 1, + anon_sym_LBRACE, + STATE(1247), 1, + sym_text_interpolation, + STATE(1879), 1, + sym_namespace_use_group, + ACTIONS(2479), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [44458] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2501), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2503), 1, + aux_sym_case_statement_token1, + ACTIONS(2517), 1, + aux_sym_switch_block_token1, + STATE(1223), 1, aux_sym_switch_block_repeat1, - STATE(1331), 2, + STATE(1248), 1, + sym_text_interpolation, + STATE(1373), 2, sym_case_statement, sym_default_statement, - [43195] = 4, + [44484] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1205), 1, - sym_text_interpolation, - ACTIONS(2394), 6, - anon_sym_LBRACE, + ACTIONS(2519), 1, + sym_name, + ACTIONS(2521), 1, anon_sym_AMP, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [43213] = 4, + STATE(1249), 1, + sym_text_interpolation, + STATE(1738), 1, + sym__reserved_identifier, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [44508] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1206), 1, + ACTIONS(2523), 1, + aux_sym_if_statement_token2, + ACTIONS(2525), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2527), 1, + aux_sym_else_clause_token1, + STATE(1250), 1, sym_text_interpolation, - ACTIONS(2396), 6, - anon_sym_LBRACE, - anon_sym_AMP, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [43231] = 9, + STATE(1281), 1, + aux_sym_if_statement_repeat2, + STATE(1706), 1, + sym_else_if_clause_2, + STATE(2066), 1, + sym_else_clause_2, + [44536] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(874), 1, + aux_sym_while_statement_token1, + ACTIONS(2529), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2531), 1, + aux_sym_else_clause_token1, + STATE(1251), 1, + sym_text_interpolation, + STATE(1279), 1, + aux_sym_if_statement_repeat1, + STATE(1579), 1, + sym_else_clause, + STATE(1580), 1, + sym_else_if_clause, + [44564] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2525), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2527), 1, + aux_sym_else_clause_token1, + ACTIONS(2533), 1, + aux_sym_if_statement_token2, + STATE(1252), 1, + sym_text_interpolation, + STATE(1358), 1, + aux_sym_if_statement_repeat2, + STATE(1706), 1, + sym_else_if_clause_2, + STATE(2061), 1, + sym_else_clause_2, + [44592] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(2322), 1, + ACTIONS(2481), 1, anon_sym_LBRACE, - ACTIONS(2324), 1, - aux_sym_base_clause_token1, - ACTIONS(2326), 1, - aux_sym_class_interface_clause_token1, - STATE(719), 1, - sym_declaration_list, - STATE(1207), 1, + STATE(1253), 1, sym_text_interpolation, - STATE(1393), 1, - sym_base_clause, - STATE(1769), 1, - sym_class_interface_clause, - [43259] = 9, + STATE(1906), 1, + sym_namespace_use_group, + ACTIONS(2479), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [44614] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2368), 1, + ACTIONS(2485), 1, aux_sym_namespace_use_declaration_token1, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2384), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - STATE(915), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + STATE(872), 1, sym_compound_statement, - STATE(1208), 1, + STATE(1254), 1, sym_text_interpolation, - STATE(1307), 1, + STATE(1479), 1, sym_anonymous_function_use_clause, - STATE(1628), 1, + STATE(1856), 1, sym__return_type, - [43287] = 8, - ACTIONS(11), 1, + [44642] = 9, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2398), 1, - sym_php_tag, - ACTIONS(2402), 1, - sym__eof, - STATE(1209), 1, + ACTIONS(2443), 1, + aux_sym_base_clause_token1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2491), 1, + anon_sym_LBRACE, + STATE(419), 1, + sym_declaration_list, + STATE(1255), 1, sym_text_interpolation, - STATE(1304), 1, - aux_sym_text_repeat1, - STATE(1630), 1, - sym_text, - ACTIONS(2400), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [43313] = 6, + STATE(1422), 1, + sym_base_clause, + STATE(1836), 1, + sym_class_interface_clause, + [44670] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2352), 1, + ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2487), 1, anon_sym_LBRACE, - STATE(1210), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + STATE(889), 1, + sym_compound_statement, + STATE(1256), 1, sym_text_interpolation, - STATE(1623), 1, - sym_namespace_use_group, - ACTIONS(2372), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [43335] = 6, + STATE(1417), 1, + sym_anonymous_function_use_clause, + STATE(1818), 1, + sym__return_type, + [44698] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2352), 1, + ACTIONS(2443), 1, + aux_sym_base_clause_token1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2491), 1, anon_sym_LBRACE, - STATE(1211), 1, + STATE(411), 1, + sym_declaration_list, + STATE(1257), 1, sym_text_interpolation, - STATE(1623), 1, - sym_namespace_use_group, - ACTIONS(2350), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [43357] = 9, + STATE(1414), 1, + sym_base_clause, + STATE(1816), 1, + sym_class_interface_clause, + [44726] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2324), 1, + ACTIONS(2441), 1, + anon_sym_LBRACE, + ACTIONS(2443), 1, aux_sym_base_clause_token1, - ACTIONS(2326), 1, + ACTIONS(2445), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2328), 1, - anon_sym_LBRACE, - STATE(1212), 1, - sym_text_interpolation, - STATE(1237), 1, + STATE(938), 1, sym_declaration_list, - STATE(1396), 1, + STATE(1258), 1, + sym_text_interpolation, + STATE(1372), 1, sym_base_clause, - STATE(1789), 1, + STATE(1755), 1, sym_class_interface_clause, - [43385] = 6, + [44754] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2501), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2503), 1, + aux_sym_case_statement_token1, + ACTIONS(2535), 1, + aux_sym_switch_block_token1, + STATE(1259), 1, + sym_text_interpolation, + STATE(1267), 1, + aux_sym_switch_block_repeat1, + STATE(1373), 2, + sym_case_statement, + sym_default_statement, + [44780] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(2352), 1, + ACTIONS(2481), 1, anon_sym_LBRACE, - STATE(1213), 1, + STATE(1260), 1, sym_text_interpolation, - STATE(1797), 1, + STATE(1822), 1, sym_namespace_use_group, - ACTIONS(2372), 4, + ACTIONS(2483), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [43407] = 9, + [44802] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - ACTIONS(2368), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2370), 1, - anon_sym_COLON, - STATE(729), 1, - sym_compound_statement, - STATE(1214), 1, + ACTIONS(2495), 1, + aux_sym_namespace_use_declaration_token2, + ACTIONS(2537), 1, + aux_sym_class_declaration_token1, + STATE(1261), 1, sym_text_interpolation, - STATE(1403), 1, - sym_anonymous_function_use_clause, - STATE(1791), 1, - sym__return_type, - [43435] = 9, + STATE(1747), 1, + sym__function_definition_header, + STATE(2023), 1, + sym_class_modifier, + ACTIONS(2190), 2, + aux_sym_class_modifier_token1, + aux_sym_class_modifier_token2, + [44828] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2364), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2366), 1, - aux_sym_else_clause_token1, - ACTIONS(2404), 1, - aux_sym_if_statement_token2, - STATE(1215), 1, + ACTIONS(2443), 1, + aux_sym_base_clause_token1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2491), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_declaration_list, + STATE(1262), 1, sym_text_interpolation, - STATE(1275), 1, - aux_sym_if_statement_repeat2, - STATE(1563), 1, - sym_else_if_clause_2, - STATE(1945), 1, - sym_else_clause_2, - [43463] = 4, + STATE(1441), 1, + sym_base_clause, + STATE(1762), 1, + sym_class_interface_clause, + [44856] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1216), 1, - sym_text_interpolation, - ACTIONS(2406), 6, + ACTIONS(2541), 1, + anon_sym_COMMA, + ACTIONS(2543), 1, anon_sym_LBRACE, + STATE(1151), 1, + sym_use_list, + STATE(1263), 1, + sym_text_interpolation, + STATE(1353), 1, + aux_sym_base_clause_repeat1, + ACTIONS(2539), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [44882] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2435), 1, + sym_name, + ACTIONS(2545), 1, anon_sym_AMP, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [43481] = 9, + STATE(1264), 1, + sym_text_interpolation, + STATE(1876), 1, + sym__reserved_identifier, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [44906] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(877), 1, - aux_sym_while_statement_token1, - ACTIONS(2408), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2410), 1, - aux_sym_else_clause_token1, - STATE(1217), 1, + ACTIONS(2481), 1, + anon_sym_LBRACE, + STATE(1265), 1, sym_text_interpolation, - STATE(1233), 1, - aux_sym_if_statement_repeat1, - STATE(1439), 1, - sym_else_if_clause, - STATE(1441), 1, - sym_else_clause, - [43509] = 8, + STATE(1822), 1, + sym_namespace_use_group, + ACTIONS(2479), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [44928] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2344), 1, + ACTIONS(2501), 1, aux_sym_match_default_expression_token1, - ACTIONS(2348), 1, + ACTIONS(2503), 1, aux_sym_case_statement_token1, - ACTIONS(2412), 1, + ACTIONS(2547), 1, anon_sym_RBRACE, - STATE(1165), 1, + STATE(1223), 1, aux_sym_switch_block_repeat1, - STATE(1218), 1, + STATE(1266), 1, sym_text_interpolation, - STATE(1331), 2, + STATE(1373), 2, sym_case_statement, sym_default_statement, - [43535] = 8, + [44954] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2501), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2503), 1, + aux_sym_case_statement_token1, + ACTIONS(2549), 1, + aux_sym_switch_block_token1, + STATE(1223), 1, + aux_sym_switch_block_repeat1, + STATE(1267), 1, + sym_text_interpolation, + STATE(1373), 2, + sym_case_statement, + sym_default_statement, + [44980] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2358), 1, - anon_sym_COMMA, - ACTIONS(2360), 1, - anon_sym_LBRACE, - STATE(1109), 1, - sym_use_list, - STATE(1219), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2551), 1, + sym_php_tag, + ACTIONS(2555), 1, + sym__eof, + STATE(1268), 1, sym_text_interpolation, - STATE(1234), 1, - aux_sym_base_clause_repeat1, - ACTIONS(2414), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [43561] = 7, + STATE(1305), 1, + aux_sym_text_repeat1, + STATE(1727), 1, + sym_text, + ACTIONS(2553), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [45006] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(2493), 1, sym_name, - STATE(1220), 1, + STATE(1269), 1, sym_text_interpolation, - STATE(1373), 1, + STATE(1377), 1, sym_const_element, - STATE(1870), 1, + STATE(1928), 1, sym__reserved_identifier, - ACTIONS(1481), 3, + ACTIONS(1554), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [43585] = 9, + [45030] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2368), 1, - aux_sym_namespace_use_declaration_token1, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2384), 1, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(904), 1, - sym_compound_statement, - STATE(1221), 1, - sym_text_interpolation, - STATE(1372), 1, - sym_anonymous_function_use_clause, - STATE(1726), 1, - sym__return_type, - [43613] = 9, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2324), 1, + ACTIONS(2443), 1, aux_sym_base_clause_token1, - ACTIONS(2326), 1, + ACTIONS(2445), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2390), 1, - anon_sym_LBRACE, - STATE(414), 1, - sym_declaration_list, - STATE(1222), 1, + STATE(1270), 1, sym_text_interpolation, - STATE(1313), 1, + STATE(1330), 1, + sym_declaration_list, + STATE(1450), 1, sym_base_clause, - STATE(1632), 1, + STATE(1785), 1, sym_class_interface_clause, - [43641] = 6, + [45058] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2352), 1, + ACTIONS(354), 1, anon_sym_LBRACE, - STATE(1223), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2485), 1, + aux_sym_namespace_use_declaration_token1, + ACTIONS(2489), 1, + anon_sym_COLON, + STATE(748), 1, + sym_compound_statement, + STATE(1271), 1, sym_text_interpolation, - STATE(1647), 1, - sym_namespace_use_group, - ACTIONS(2350), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [43663] = 4, + STATE(1446), 1, + sym_anonymous_function_use_clause, + STATE(1774), 1, + sym__return_type, + [45086] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1224), 1, + STATE(1272), 1, sym_text_interpolation, - ACTIONS(2416), 6, + ACTIONS(2557), 6, anon_sym_LBRACE, anon_sym_AMP, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [43681] = 4, + [45104] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1225), 1, + ACTIONS(2501), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2503), 1, + aux_sym_case_statement_token1, + ACTIONS(2559), 1, + aux_sym_switch_block_token1, + STATE(1248), 1, + aux_sym_switch_block_repeat1, + STATE(1273), 1, + sym_text_interpolation, + STATE(1373), 2, + sym_case_statement, + sym_default_statement, + [45130] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2501), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2503), 1, + aux_sym_case_statement_token1, + ACTIONS(2561), 1, + anon_sym_RBRACE, + STATE(1223), 1, + aux_sym_switch_block_repeat1, + STATE(1274), 1, sym_text_interpolation, - ACTIONS(2418), 6, + STATE(1373), 2, + sym_case_statement, + sym_default_statement, + [45156] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1275), 1, + sym_text_interpolation, + ACTIONS(2563), 6, anon_sym_LBRACE, anon_sym_AMP, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [43699] = 4, + [45174] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1226), 1, + STATE(1276), 1, sym_text_interpolation, - ACTIONS(2420), 6, + ACTIONS(2565), 6, anon_sym_LBRACE, anon_sym_AMP, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [43717] = 9, + [45192] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2364), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2366), 1, - aux_sym_else_clause_token1, - ACTIONS(2422), 1, - aux_sym_if_statement_token2, - STATE(1198), 1, - aux_sym_if_statement_repeat2, - STATE(1227), 1, + ACTIONS(2501), 1, + aux_sym_match_default_expression_token1, + ACTIONS(2503), 1, + aux_sym_case_statement_token1, + ACTIONS(2567), 1, + anon_sym_RBRACE, + STATE(1266), 1, + aux_sym_switch_block_repeat1, + STATE(1277), 1, sym_text_interpolation, - STATE(1563), 1, - sym_else_if_clause_2, - STATE(1896), 1, - sym_else_clause_2, - [43745] = 9, + STATE(1373), 2, + sym_case_statement, + sym_default_statement, + [45218] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2493), 1, + sym_name, + STATE(1278), 1, + sym_text_interpolation, + STATE(1663), 1, + sym_const_element, + STATE(1928), 1, + sym__reserved_identifier, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45242] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(869), 1, + ACTIONS(884), 1, aux_sym_while_statement_token1, - ACTIONS(2424), 1, + ACTIONS(2529), 1, aux_sym_else_if_clause_token1, - ACTIONS(2427), 1, + ACTIONS(2531), 1, aux_sym_else_clause_token1, - STATE(1228), 1, + STATE(1279), 1, sym_text_interpolation, - STATE(1256), 1, + STATE(1362), 1, aux_sym_if_statement_repeat1, - STATE(1439), 1, - sym_else_if_clause, - STATE(1500), 1, + STATE(1510), 1, sym_else_clause, - [43773] = 9, + STATE(1580), 1, + sym_else_if_clause, + [45270] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(877), 1, - aux_sym_while_statement_token1, - ACTIONS(2430), 1, + ACTIONS(2493), 1, + sym_name, + STATE(1280), 1, + sym_text_interpolation, + STATE(1418), 1, + sym_const_element, + STATE(1928), 1, + sym__reserved_identifier, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45294] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2525), 1, aux_sym_else_if_clause_token1, - ACTIONS(2433), 1, + ACTIONS(2527), 1, aux_sym_else_clause_token1, - STATE(1228), 1, - aux_sym_if_statement_repeat1, - STATE(1229), 1, + ACTIONS(2569), 1, + aux_sym_if_statement_token2, + STATE(1281), 1, sym_text_interpolation, - STATE(1439), 1, - sym_else_if_clause, - STATE(1441), 1, - sym_else_clause, - [43801] = 6, + STATE(1358), 1, + aux_sym_if_statement_repeat2, + STATE(1706), 1, + sym_else_if_clause_2, + STATE(2039), 1, + sym_else_clause_2, + [45322] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2352), 1, + ACTIONS(2481), 1, anon_sym_LBRACE, - STATE(1230), 1, + STATE(1282), 1, sym_text_interpolation, - STATE(1712), 1, + STATE(1879), 1, sym_namespace_use_group, - ACTIONS(2372), 4, + ACTIONS(2483), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, sym_name, - [43823] = 7, + [45344] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2374), 1, - sym_name, - STATE(1231), 1, - sym_text_interpolation, - STATE(1548), 1, - sym_const_element, - STATE(1870), 1, - sym__reserved_identifier, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [43847] = 8, + ACTIONS(2541), 1, + anon_sym_COMMA, + ACTIONS(2543), 1, + anon_sym_LBRACE, + STATE(1148), 1, + sym_use_list, + STATE(1263), 1, + aux_sym_base_clause_repeat1, + STATE(1283), 1, + sym_text_interpolation, + ACTIONS(2571), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [45370] = 9, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2344), 1, - aux_sym_match_default_expression_token1, - ACTIONS(2348), 1, - aux_sym_case_statement_token1, - ACTIONS(2436), 1, - anon_sym_RBRACE, - STATE(1196), 1, - aux_sym_switch_block_repeat1, - STATE(1232), 1, + ACTIONS(2441), 1, + anon_sym_LBRACE, + ACTIONS(2443), 1, + aux_sym_base_clause_token1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + STATE(1284), 1, sym_text_interpolation, - STATE(1331), 2, - sym_case_statement, - sym_default_statement, - [43873] = 9, + STATE(1354), 1, + sym_declaration_list, + STATE(1466), 1, + sym_base_clause, + STATE(1908), 1, + sym_class_interface_clause, + [45398] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1472), 1, + anon_sym_BSLASH, + STATE(1285), 1, + sym_text_interpolation, + STATE(1764), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(1470), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [45420] = 9, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(869), 1, + ACTIONS(2525), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2527), 1, + aux_sym_else_clause_token1, + ACTIONS(2573), 1, + aux_sym_if_statement_token2, + STATE(1252), 1, + aux_sym_if_statement_repeat2, + STATE(1286), 1, + sym_text_interpolation, + STATE(1706), 1, + sym_else_if_clause_2, + STATE(2059), 1, + sym_else_clause_2, + [45448] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(908), 1, + aux_sym_else_clause_token1, + STATE(1287), 1, + sym_text_interpolation, + ACTIONS(906), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, aux_sym_while_statement_token1, - ACTIONS(2408), 1, aux_sym_else_if_clause_token1, - ACTIONS(2410), 1, + [45467] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2575), 1, + sym_name, + STATE(1288), 1, + sym_text_interpolation, + STATE(1424), 1, + sym_namespace_name, + STATE(1543), 1, + sym_namespace_use_group_clause, + ACTIONS(2577), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [45490] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2579), 1, + anon_sym_PIPE, + STATE(1289), 2, + sym_text_interpolation, + aux_sym_union_type_repeat1, + ACTIONS(2557), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [45509] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2584), 1, + anon_sym_BSLASH, + STATE(1290), 1, + sym_text_interpolation, + STATE(1357), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(2582), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [45530] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(943), 1, aux_sym_else_clause_token1, - STATE(1233), 1, + STATE(1291), 1, sym_text_interpolation, - STATE(1256), 1, - aux_sym_if_statement_repeat1, - STATE(1439), 1, - sym_else_if_clause, - STATE(1500), 1, - sym_else_clause, - [43901] = 5, + ACTIONS(941), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2586), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [45551] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2588), 1, + sym_name, + STATE(1292), 1, + sym_text_interpolation, + STATE(1666), 1, + sym_visibility_modifier, + ACTIONS(2590), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, + [45572] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(2440), 1, + ACTIONS(2584), 1, + anon_sym_BSLASH, + STATE(1290), 1, + aux_sym_namespace_name_repeat1, + STATE(1293), 1, + sym_text_interpolation, + ACTIONS(2592), 3, anon_sym_COMMA, - STATE(1234), 2, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [45593] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2596), 1, + anon_sym_COLON, + STATE(1294), 1, sym_text_interpolation, - aux_sym_base_clause_repeat1, - ACTIONS(2438), 3, + STATE(1560), 1, + sym__return_type, + ACTIONS(2594), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [43920] = 7, + [45614] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2443), 1, - aux_sym_catch_clause_token1, - ACTIONS(2445), 1, - aux_sym_finally_clause_token1, - STATE(395), 1, - aux_sym_try_statement_repeat1, - STATE(1235), 1, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + ACTIONS(2602), 1, + anon_sym_DASH_GT, + ACTIONS(2604), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(2606), 1, + anon_sym_LBRACK, + STATE(1295), 1, sym_text_interpolation, - STATE(404), 2, - sym_catch_clause, - sym_finally_clause, - [43943] = 7, + [45639] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(578), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, sym_comment, - ACTIONS(1772), 1, + ACTIONS(2608), 1, + sym_name, + ACTIONS(2610), 1, + anon_sym_LBRACE, + STATE(1296), 1, + sym_text_interpolation, + STATE(539), 2, + sym_dynamic_variable_name, + sym_variable_name, + [45662] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2612), 1, + anon_sym_PIPE, + STATE(1297), 2, + sym_text_interpolation, + aux_sym_union_type_repeat1, + ACTIONS(2557), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - ACTIONS(2447), 1, + [45681] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2615), 1, sym_name, - ACTIONS(2449), 1, + STATE(602), 1, + sym__reserved_identifier, + STATE(1298), 1, + sym_text_interpolation, + ACTIONS(2365), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45702] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1877), 1, + anon_sym_DOLLAR, + ACTIONS(2617), 1, + sym_name, + ACTIONS(2619), 1, anon_sym_LBRACE, - STATE(1236), 1, + STATE(1299), 1, sym_text_interpolation, - STATE(693), 2, + STATE(637), 2, sym_dynamic_variable_name, sym_variable_name, - [43966] = 6, + [45725] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2621), 1, + sym_name, + STATE(1300), 1, + sym_text_interpolation, + STATE(1369), 1, + sym__reserved_identifier, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45746] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + ACTIONS(2606), 1, + anon_sym_LBRACK, + ACTIONS(2623), 1, + anon_sym_DASH_GT, + ACTIONS(2625), 1, + anon_sym_QMARK_DASH_GT, + STATE(1301), 1, + sym_text_interpolation, + [45771] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + ACTIONS(2627), 1, + anon_sym_LBRACE, + ACTIONS(2629), 1, + anon_sym_DASH_GT, + ACTIONS(2631), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(2633), 1, + anon_sym_LBRACK, + STATE(1302), 1, + sym_text_interpolation, + [45796] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2615), 1, + sym_name, + STATE(602), 1, + sym__reserved_identifier, + STATE(1303), 1, + sym_text_interpolation, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45817] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + ACTIONS(2606), 1, + anon_sym_LBRACK, + ACTIONS(2635), 1, + anon_sym_DASH_GT, + ACTIONS(2637), 1, + anon_sym_QMARK_DASH_GT, + STATE(1304), 1, + sym_text_interpolation, + [45842] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(964), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2639), 1, + sym_php_tag, + ACTIONS(2641), 1, + sym__eof, + STATE(1305), 1, + sym_text_interpolation, + STATE(1314), 1, + aux_sym_text_repeat1, + ACTIONS(2553), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [45865] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_BSLASH, + STATE(1306), 1, + sym_text_interpolation, + STATE(1657), 1, + sym_compound_statement, + ACTIONS(2643), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [45888] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1871), 1, + anon_sym_DOLLAR, + ACTIONS(2647), 1, + sym_name, + ACTIONS(2649), 1, + anon_sym_LBRACE, + STATE(1307), 1, + sym_text_interpolation, + STATE(709), 2, + sym_dynamic_variable_name, + sym_variable_name, + [45911] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(912), 1, aux_sym_else_clause_token1, - STATE(1237), 1, + STATE(1308), 1, sym_text_interpolation, - ACTIONS(962), 2, + ACTIONS(910), 4, + aux_sym_catch_clause_token1, + aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2451), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [43987] = 5, + [45930] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, ACTIONS(2453), 1, - anon_sym_PIPE, - STATE(1238), 2, + aux_sym_catch_clause_token1, + ACTIONS(2455), 1, + aux_sym_finally_clause_token1, + STATE(1205), 1, + aux_sym_try_statement_repeat1, + STATE(1309), 1, + sym_text_interpolation, + STATE(1325), 2, + sym_catch_clause, + sym_finally_clause, + [45953] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + ACTIONS(2651), 1, + anon_sym_LBRACE, + ACTIONS(2653), 1, + anon_sym_DASH_GT, + ACTIONS(2655), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(2657), 1, + anon_sym_LBRACK, + STATE(1310), 1, + sym_text_interpolation, + [45978] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2659), 1, + sym_name, + STATE(695), 1, + sym__reserved_identifier, + STATE(1311), 1, sym_text_interpolation, + ACTIONS(2241), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [45999] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2663), 1, + anon_sym_PIPE, + STATE(1297), 1, aux_sym_union_type_repeat1, - ACTIONS(2406), 3, + STATE(1312), 1, + sym_text_interpolation, + ACTIONS(2661), 3, anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [44006] = 5, + [46020] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(937), 1, + aux_sym_else_clause_token1, + STATE(1313), 1, + sym_text_interpolation, + ACTIONS(935), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2665), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46041] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(922), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2667), 1, + sym_php_tag, + ACTIONS(2672), 1, + sym__eof, + ACTIONS(2669), 2, + aux_sym_text_token1, + aux_sym_text_token2, + STATE(1314), 2, + sym_text_interpolation, + aux_sym_text_repeat1, + [46062] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1005), 1, aux_sym_else_clause_token1, - STATE(1239), 1, + STATE(1315), 1, + sym_text_interpolation, + ACTIONS(1003), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2674), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46083] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2678), 1, + anon_sym_BSLASH, + STATE(1316), 2, sym_text_interpolation, - ACTIONS(920), 4, + aux_sym_namespace_name_repeat1, + ACTIONS(2676), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [46102] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + ACTIONS(2627), 1, + anon_sym_LBRACE, + ACTIONS(2633), 1, + anon_sym_LBRACK, + ACTIONS(2681), 1, + anon_sym_DASH_GT, + ACTIONS(2683), 1, + anon_sym_QMARK_DASH_GT, + STATE(1317), 1, + sym_text_interpolation, + [46127] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + ACTIONS(2685), 1, + anon_sym_LBRACE, + ACTIONS(2687), 1, + anon_sym_DASH_GT, + ACTIONS(2689), 1, + anon_sym_QMARK_DASH_GT, + ACTIONS(2691), 1, + anon_sym_LBRACK, + STATE(1318), 1, + sym_text_interpolation, + [46152] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(281), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2693), 1, + sym_name, + ACTIONS(2695), 1, + anon_sym_LBRACE, + STATE(1319), 1, + sym_text_interpolation, + STATE(567), 2, + sym_dynamic_variable_name, + sym_variable_name, + [46175] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2667), 1, + sym_php_tag, + ACTIONS(2672), 1, + ts_builtin_sym_end, + ACTIONS(2697), 2, + aux_sym_text_token1, + aux_sym_text_token2, + STATE(1320), 2, + sym_text_interpolation, + aux_sym_text_repeat1, + [46196] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2700), 1, + sym_name, + STATE(1321), 1, + sym_text_interpolation, + STATE(2058), 1, + sym_namespace_name, + ACTIONS(2483), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [46217] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(927), 1, + aux_sym_else_clause_token1, + STATE(1322), 1, + sym_text_interpolation, + ACTIONS(925), 4, aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [44025] = 5, + [46236] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2705), 1, + anon_sym_EQ, + STATE(1323), 1, + sym_text_interpolation, + STATE(1518), 1, + sym_property_initializer, + ACTIONS(2703), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [46257] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2707), 1, + aux_sym_catch_clause_token1, + ACTIONS(2709), 1, + aux_sym_finally_clause_token1, + STATE(398), 1, + aux_sym_try_statement_repeat1, + STATE(1324), 1, + sym_text_interpolation, + STATE(409), 2, + sym_catch_clause, + sym_finally_clause, + [46280] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(910), 1, + ACTIONS(923), 1, aux_sym_else_clause_token1, - STATE(1240), 1, + STATE(1325), 1, sym_text_interpolation, - ACTIONS(908), 4, + ACTIONS(921), 4, aux_sym_catch_clause_token1, aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [44044] = 6, + [46299] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(958), 1, + ACTIONS(931), 1, aux_sym_else_clause_token1, - STATE(1241), 1, + STATE(1326), 1, sym_text_interpolation, - ACTIONS(956), 2, + ACTIONS(929), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2456), 2, + ACTIONS(2711), 2, sym__automatic_semicolon, anon_sym_SEMI, - [44065] = 4, + [46320] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1242), 1, + ACTIONS(2575), 1, + sym_name, + STATE(1327), 1, + sym_text_interpolation, + STATE(1424), 1, + sym_namespace_name, + STATE(1886), 1, + sym_namespace_use_group_clause, + ACTIONS(2577), 2, + aux_sym_namespace_use_declaration_token2, + aux_sym_namespace_use_declaration_token3, + [46343] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2713), 1, + anon_sym_BSLASH, + STATE(1328), 1, + sym_text_interpolation, + STATE(1346), 1, + aux_sym_namespace_name_repeat1, + ACTIONS(2592), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [46364] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1329), 1, sym_text_interpolation, - ACTIONS(2458), 5, + ACTIONS(2716), 5, anon_sym_LBRACE, anon_sym_AMP, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [44082] = 6, + [46381] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2460), 1, + ACTIONS(975), 1, + aux_sym_else_clause_token1, + STATE(1330), 1, + sym_text_interpolation, + ACTIONS(973), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2718), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46402] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(949), 1, + aux_sym_else_clause_token1, + STATE(1331), 1, + sym_text_interpolation, + ACTIONS(947), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2720), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46423] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(959), 1, + aux_sym_else_clause_token1, + STATE(1332), 1, + sym_text_interpolation, + ACTIONS(957), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2722), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46444] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2663), 1, + anon_sym_PIPE, + STATE(1312), 1, + aux_sym_union_type_repeat1, + STATE(1333), 1, + sym_text_interpolation, + ACTIONS(2724), 3, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + [46465] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(199), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_BSLASH, + STATE(489), 1, + sym_compound_statement, + STATE(1334), 1, + sym_text_interpolation, + ACTIONS(2726), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46488] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1335), 1, + sym_text_interpolation, + ACTIONS(1371), 5, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_QMARK_DASH_GT, + anon_sym_LBRACK, + [46505] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2596), 1, + anon_sym_COLON, + STATE(1336), 1, + sym_text_interpolation, + STATE(1599), 1, + sym__return_type, + ACTIONS(2728), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [46526] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2730), 1, + anon_sym_PIPE, + STATE(1337), 1, + sym_text_interpolation, + STATE(1345), 1, + aux_sym_union_type_repeat1, + ACTIONS(2724), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [46547] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + ACTIONS(2627), 1, + anon_sym_LBRACE, + ACTIONS(2633), 1, + anon_sym_LBRACK, + ACTIONS(2732), 1, + anon_sym_DASH_GT, + ACTIONS(2734), 1, + anon_sym_QMARK_DASH_GT, + STATE(1338), 1, + sym_text_interpolation, + [46572] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2736), 1, sym_name, - STATE(1243), 1, + STATE(1339), 1, sym_text_interpolation, - STATE(1678), 1, - sym__reserved_identifier, - ACTIONS(1481), 3, + STATE(2077), 1, + sym_namespace_name, + ACTIONS(2739), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [44103] = 6, + [46593] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2464), 1, + ACTIONS(969), 1, + aux_sym_else_clause_token1, + STATE(1340), 1, + sym_text_interpolation, + ACTIONS(967), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2741), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46614] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2743), 1, anon_sym_PIPE, - STATE(1244), 1, + STATE(1341), 2, sym_text_interpolation, - STATE(1245), 1, aux_sym_union_type_repeat1, - ACTIONS(2462), 3, + ACTIONS(2557), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [46633] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(993), 1, + aux_sym_else_clause_token1, + STATE(1342), 1, + sym_text_interpolation, + ACTIONS(991), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2746), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46654] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2736), 1, + sym_name, + STATE(1343), 1, + sym_text_interpolation, + STATE(1932), 1, + sym_namespace_name, + ACTIONS(2739), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [46675] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + ACTIONS(2651), 1, + anon_sym_LBRACE, + ACTIONS(2657), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_DASH_GT, + ACTIONS(2750), 1, + anon_sym_QMARK_DASH_GT, + STATE(1344), 1, + sym_text_interpolation, + [46700] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2730), 1, + anon_sym_PIPE, + STATE(1341), 1, + aux_sym_union_type_repeat1, + STATE(1345), 1, + sym_text_interpolation, + ACTIONS(2661), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [46721] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2752), 1, + anon_sym_BSLASH, + STATE(1316), 1, + aux_sym_namespace_name_repeat1, + STATE(1346), 1, + sym_text_interpolation, + ACTIONS(2582), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [46742] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2736), 1, + sym_name, + STATE(1347), 1, + sym_text_interpolation, + STATE(1997), 1, + sym_namespace_name, + ACTIONS(2739), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [46763] = 8, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2755), 1, + sym_name, + ACTIONS(2757), 1, + anon_sym_BSLASH, + STATE(1306), 1, + sym_namespace_name, + STATE(1348), 1, + sym_text_interpolation, + STATE(1704), 1, + sym_compound_statement, + [46788] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2736), 1, + sym_name, + STATE(1349), 1, + sym_text_interpolation, + STATE(1984), 1, + sym_namespace_name, + ACTIONS(2739), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [46809] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2459), 1, + sym_name, + STATE(1350), 1, + sym_text_interpolation, + STATE(1845), 1, + sym__reserved_identifier, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [46830] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2761), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1351), 1, + sym_text_interpolation, + STATE(1696), 1, + sym_namespace_aliasing_clause, + ACTIONS(2759), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [46851] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2763), 1, + sym_name, + STATE(1352), 1, + sym_text_interpolation, + STATE(1761), 1, + sym__reserved_identifier, + ACTIONS(1554), 3, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + [46872] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2767), 1, + anon_sym_COMMA, + STATE(1353), 2, + sym_text_interpolation, + aux_sym_base_clause_repeat1, + ACTIONS(2765), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [44124] = 5, + [46891] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(981), 1, + aux_sym_else_clause_token1, + STATE(1354), 1, + sym_text_interpolation, + ACTIONS(979), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2770), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46912] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2772), 1, + anon_sym_PIPE, + STATE(1355), 1, + sym_text_interpolation, + STATE(1359), 1, + aux_sym_union_type_repeat1, + ACTIONS(2724), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [46933] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(987), 1, + aux_sym_else_clause_token1, + STATE(1356), 1, + sym_text_interpolation, + ACTIONS(985), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + ACTIONS(2774), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46954] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2776), 1, + anon_sym_BSLASH, + STATE(1357), 2, + sym_text_interpolation, + aux_sym_namespace_name_repeat1, + ACTIONS(2676), 3, + anon_sym_COMMA, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [46973] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2779), 1, + aux_sym_if_statement_token2, + ACTIONS(2781), 1, + aux_sym_else_if_clause_token1, + ACTIONS(2784), 1, + aux_sym_else_clause_token1, + STATE(1706), 1, + sym_else_if_clause_2, + STATE(1358), 2, + sym_text_interpolation, + aux_sym_if_statement_repeat2, + [46996] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2466), 1, + ACTIONS(2772), 1, anon_sym_PIPE, - STATE(1245), 2, - sym_text_interpolation, + STATE(1289), 1, aux_sym_union_type_repeat1, - ACTIONS(2406), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + STATE(1359), 1, + sym_text_interpolation, + ACTIONS(2661), 3, anon_sym_LBRACE, - [44143] = 5, + anon_sym_EQ_GT, + anon_sym_DOLLAR, + [47017] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(199), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - ACTIONS(2471), 1, + ACTIONS(2755), 1, + sym_name, + ACTIONS(2757), 1, anon_sym_BSLASH, - STATE(1246), 2, + STATE(438), 1, + sym_compound_statement, + STATE(1334), 1, + sym_namespace_name, + STATE(1360), 1, sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(2469), 3, - anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [44162] = 6, + [47042] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(940), 1, + ACTIONS(999), 1, aux_sym_else_clause_token1, - STATE(1247), 1, + STATE(1361), 1, sym_text_interpolation, - ACTIONS(938), 2, + ACTIONS(997), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - ACTIONS(2474), 2, + ACTIONS(2786), 2, sym__automatic_semicolon, anon_sym_SEMI, - [44183] = 6, + [47063] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2478), 1, - anon_sym_COLON, - STATE(1248), 1, - sym_text_interpolation, - STATE(1459), 1, - sym__return_type, - ACTIONS(2476), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [44204] = 7, - ACTIONS(11), 1, - anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2480), 1, - ts_builtin_sym_end, - ACTIONS(2482), 1, - sym_php_tag, - STATE(1249), 1, + ACTIONS(914), 1, + aux_sym_while_statement_token1, + ACTIONS(916), 1, + aux_sym_else_clause_token1, + ACTIONS(2788), 1, + aux_sym_else_if_clause_token1, + STATE(1580), 1, + sym_else_if_clause, + STATE(1362), 2, sym_text_interpolation, - STATE(1302), 1, - aux_sym_text_repeat1, - ACTIONS(13), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [44227] = 6, + aux_sym_if_statement_repeat1, + [47086] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2484), 1, + ACTIONS(2736), 1, sym_name, - STATE(1250), 1, + STATE(1363), 1, sym_text_interpolation, - STATE(1852), 1, + STATE(1947), 1, sym_namespace_name, - ACTIONS(2487), 3, + ACTIONS(2739), 3, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [44248] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, + [47107] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(2489), 1, - anon_sym_PIPE, - STATE(1251), 2, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2639), 1, + sym_php_tag, + ACTIONS(2641), 1, + ts_builtin_sym_end, + STATE(1320), 1, + aux_sym_text_repeat1, + STATE(1364), 1, sym_text_interpolation, - aux_sym_union_type_repeat1, - ACTIONS(2406), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [44267] = 8, + ACTIONS(13), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [47130] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2492), 1, - anon_sym_LBRACE, - ACTIONS(2494), 1, - anon_sym_COLON_COLON, - ACTIONS(2496), 1, - anon_sym_DASH_GT, - ACTIONS(2498), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(2500), 1, - anon_sym_LBRACK, - STATE(1252), 1, + STATE(1365), 1, sym_text_interpolation, - [44292] = 5, + ACTIONS(2791), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47146] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2502), 1, - anon_sym_BSLASH, - STATE(1253), 2, + ACTIONS(2795), 1, + anon_sym_COMMA, + STATE(1366), 1, sym_text_interpolation, - aux_sym_namespace_name_repeat1, - ACTIONS(2469), 3, + STATE(1429), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(2793), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [44311] = 6, + [47166] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2507), 1, - anon_sym_PIPE, - STATE(1254), 1, + STATE(1367), 1, sym_text_interpolation, - STATE(1278), 1, - aux_sym_union_type_repeat1, - ACTIONS(2505), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_DOLLAR, - [44332] = 8, + ACTIONS(2676), 4, + anon_sym_COMMA, + anon_sym_BSLASH, + aux_sym_namespace_aliasing_clause_token1, + anon_sym_RBRACE, + [47182] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON_COLON, - ACTIONS(2509), 1, - anon_sym_LBRACE, - ACTIONS(2511), 1, - anon_sym_DASH_GT, - ACTIONS(2513), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(2515), 1, - anon_sym_LBRACK, - STATE(1255), 1, + STATE(1368), 1, sym_text_interpolation, - [44357] = 7, + ACTIONS(2797), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47198] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(893), 1, - aux_sym_while_statement_token1, - ACTIONS(895), 1, - aux_sym_else_clause_token1, - ACTIONS(2517), 1, - aux_sym_else_if_clause_token1, - STATE(1439), 1, - sym_else_if_clause, - STATE(1256), 2, + STATE(1369), 1, sym_text_interpolation, - aux_sym_if_statement_repeat1, - [44380] = 8, + ACTIONS(1487), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE, + anon_sym_DOLLAR, + [47214] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON_COLON, - ACTIONS(2509), 1, - anon_sym_LBRACE, - ACTIONS(2515), 1, - anon_sym_LBRACK, - ACTIONS(2520), 1, - anon_sym_DASH_GT, - ACTIONS(2522), 1, - anon_sym_QMARK_DASH_GT, - STATE(1257), 1, + STATE(1370), 1, sym_text_interpolation, - [44405] = 6, + STATE(1979), 1, + sym_declare_directive, + ACTIONS(2799), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [47232] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2524), 1, - sym_name, - STATE(1258), 1, + STATE(1371), 1, sym_text_interpolation, - STATE(1506), 1, - sym_visibility_modifier, - ACTIONS(2526), 3, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, - [44426] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2528), 1, + ACTIONS(1470), 4, + anon_sym_AMP, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE, - STATE(1251), 1, - aux_sym_union_type_repeat1, - STATE(1259), 1, - sym_text_interpolation, - ACTIONS(2462), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_DOLLAR, - [44447] = 7, + [47248] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(2530), 1, - sym_name, - ACTIONS(2532), 1, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(1260), 1, - sym_text_interpolation, - STATE(616), 2, - sym_dynamic_variable_name, - sym_variable_name, - [44470] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1261), 1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + STATE(930), 1, + sym_declaration_list, + STATE(1372), 1, sym_text_interpolation, - ACTIONS(1298), 5, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - anon_sym_DASH_GT, - anon_sym_QMARK_DASH_GT, - anon_sym_LBRACK, - [44487] = 5, + STATE(1736), 1, + sym_class_interface_clause, + [47270] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(914), 1, - aux_sym_else_clause_token1, - STATE(1262), 1, + STATE(1373), 1, sym_text_interpolation, - ACTIONS(912), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [44506] = 6, + ACTIONS(2801), 4, + anon_sym_RBRACE, + aux_sym_match_default_expression_token1, + aux_sym_switch_block_token1, + aux_sym_case_statement_token1, + [47286] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(934), 1, - aux_sym_else_clause_token1, - STATE(1263), 1, + ACTIONS(2805), 1, + anon_sym_COMMA, + STATE(1374), 1, sym_text_interpolation, - ACTIONS(932), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(2534), 2, + STATE(1444), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(2803), 2, sym__automatic_semicolon, anon_sym_SEMI, - [44527] = 6, + [47306] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(952), 1, - aux_sym_else_clause_token1, - STATE(1264), 1, + ACTIONS(2809), 1, + anon_sym_COMMA, + STATE(1375), 1, sym_text_interpolation, - ACTIONS(950), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(2536), 2, + STATE(1433), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(2807), 2, sym__automatic_semicolon, anon_sym_SEMI, - [44548] = 6, + [47326] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2538), 1, - sym_name, - STATE(1265), 1, + STATE(1376), 1, sym_text_interpolation, - STATE(1337), 1, - sym__reserved_identifier, - ACTIONS(1481), 3, + ACTIONS(2479), 4, aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [44569] = 8, + sym_name, + [47342] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON_COLON, - ACTIONS(2540), 1, - anon_sym_LBRACE, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2544), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(2546), 1, - anon_sym_LBRACK, - STATE(1266), 1, + ACTIONS(2813), 1, + anon_sym_COMMA, + STATE(1377), 1, sym_text_interpolation, - [44594] = 6, + STATE(1407), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(2811), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47362] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2478), 1, - anon_sym_COLON, - STATE(1267), 1, + ACTIONS(2817), 1, + anon_sym_COMMA, + STATE(1378), 1, sym_text_interpolation, - STATE(1428), 1, - sym__return_type, - ACTIONS(2548), 3, + STATE(1430), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(2815), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [44615] = 8, + [47382] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON_COLON, - ACTIONS(2509), 1, - anon_sym_LBRACE, - ACTIONS(2515), 1, - anon_sym_LBRACK, - ACTIONS(2550), 1, - anon_sym_DASH_GT, - ACTIONS(2552), 1, - anon_sym_QMARK_DASH_GT, - STATE(1268), 1, + ACTIONS(2817), 1, + anon_sym_COMMA, + STATE(1379), 1, sym_text_interpolation, - [44640] = 6, + STATE(1426), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(2815), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47402] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2554), 1, - sym_name, - STATE(582), 1, - sym__reserved_identifier, - STATE(1269), 1, + STATE(1380), 1, sym_text_interpolation, - ACTIONS(1481), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [44661] = 6, + ACTIONS(2819), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON, + [47418] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2464), 1, - anon_sym_PIPE, - STATE(1244), 1, - aux_sym_union_type_repeat1, - STATE(1270), 1, + STATE(1381), 1, sym_text_interpolation, - ACTIONS(2505), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [44682] = 8, + ACTIONS(2483), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [47434] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2492), 1, - anon_sym_LBRACE, - ACTIONS(2494), 1, - anon_sym_COLON_COLON, - ACTIONS(2500), 1, - anon_sym_LBRACK, - ACTIONS(2556), 1, - anon_sym_DASH_GT, - ACTIONS(2558), 1, - anon_sym_QMARK_DASH_GT, - STATE(1271), 1, + STATE(1382), 1, sym_text_interpolation, - [44707] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, + ACTIONS(2821), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47450] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - ACTIONS(2560), 1, - sym_name, - ACTIONS(2562), 1, - anon_sym_BSLASH, - STATE(1272), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2825), 1, + sym__eof, + STATE(1383), 1, sym_text_interpolation, - STATE(1293), 1, - sym_namespace_name, - STATE(1616), 1, - sym_compound_statement, - [44732] = 7, + ACTIONS(2823), 3, + sym_php_tag, + aux_sym_text_token1, + aux_sym_text_token2, + [47468] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2564), 1, - sym_name, - STATE(1273), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(1384), 1, sym_text_interpolation, - STATE(1391), 1, - sym_namespace_name, - STATE(1745), 1, - sym_namespace_use_group_clause, - ACTIONS(2566), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [44755] = 7, + STATE(1720), 1, + sym_arguments, + ACTIONS(2827), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [47488] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2564), 1, - sym_name, - STATE(1274), 1, + ACTIONS(2829), 1, + anon_sym_COMMA, + ACTIONS(2831), 1, + anon_sym_EQ, + ACTIONS(2833), 1, + anon_sym_RBRACK, + STATE(1385), 1, sym_text_interpolation, - STATE(1391), 1, - sym_namespace_name, - STATE(1619), 1, - sym_namespace_use_group_clause, - ACTIONS(2566), 2, - aux_sym_namespace_use_declaration_token2, - aux_sym_namespace_use_declaration_token3, - [44778] = 7, + STATE(1705), 1, + aux_sym__array_destructing_repeat1, + [47510] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2568), 1, - aux_sym_if_statement_token2, - ACTIONS(2570), 1, - aux_sym_else_if_clause_token1, - ACTIONS(2573), 1, - aux_sym_else_clause_token1, - STATE(1563), 1, - sym_else_if_clause_2, - STATE(1275), 2, + ACTIONS(2829), 1, + anon_sym_COMMA, + ACTIONS(2831), 1, + anon_sym_EQ, + ACTIONS(2835), 1, + anon_sym_RBRACK, + STATE(1386), 1, sym_text_interpolation, - aux_sym_if_statement_repeat2, - [44801] = 6, + STATE(1604), 1, + aux_sym__array_destructing_repeat1, + [47532] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(946), 1, - aux_sym_else_clause_token1, - STATE(1276), 1, + ACTIONS(2837), 1, + anon_sym_COMMA, + STATE(1387), 1, sym_text_interpolation, - ACTIONS(944), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - ACTIONS(2575), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [44822] = 8, + STATE(1440), 1, + aux_sym_base_clause_repeat1, + ACTIONS(2839), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [47552] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(198), 1, + ACTIONS(2841), 1, + anon_sym_SEMI, + ACTIONS(2843), 1, anon_sym_LBRACE, - ACTIONS(2560), 1, - sym_name, - ACTIONS(2562), 1, - anon_sym_BSLASH, - STATE(459), 1, + ACTIONS(2845), 1, + sym__automatic_semicolon, + STATE(1124), 1, sym_compound_statement, - STATE(1277), 1, + STATE(1388), 1, sym_text_interpolation, - STATE(1288), 1, - sym_namespace_name, - [44847] = 6, + [47574] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2507), 1, + ACTIONS(2849), 1, anon_sym_PIPE, - STATE(1238), 1, - aux_sym_union_type_repeat1, - STATE(1278), 1, + STATE(1389), 1, sym_text_interpolation, - ACTIONS(2462), 3, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, + STATE(1469), 1, + aux_sym_type_list_repeat1, + ACTIONS(2847), 2, + anon_sym_RPAREN, anon_sym_DOLLAR, - [44868] = 5, + [47594] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(902), 1, - aux_sym_else_clause_token1, - STATE(1279), 1, + ACTIONS(2853), 1, + anon_sym_COMMA, + ACTIONS(2851), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1390), 2, sym_text_interpolation, - ACTIONS(900), 4, - aux_sym_catch_clause_token1, - aux_sym_finally_clause_token1, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [44887] = 6, + aux_sym__const_declaration_repeat1, + [47612] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2579), 1, - anon_sym_BSLASH, - STATE(1246), 1, - aux_sym_namespace_name_repeat1, - STATE(1280), 1, + STATE(1391), 1, sym_text_interpolation, - ACTIONS(2577), 3, + ACTIONS(2856), 4, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [44908] = 6, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47628] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2583), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1281), 1, + STATE(1392), 1, sym_text_interpolation, - STATE(1423), 1, - sym_namespace_aliasing_clause, - ACTIONS(2581), 3, + ACTIONS(2819), 4, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [44929] = 7, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(575), 1, - anon_sym_DOLLAR, - ACTIONS(2585), 1, - sym_name, - ACTIONS(2587), 1, anon_sym_LBRACE, - STATE(1282), 1, - sym_text_interpolation, - STATE(515), 2, - sym_dynamic_variable_name, - sym_variable_name, - [44952] = 6, + anon_sym_COLON, + [47644] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2484), 1, - sym_name, - STATE(1283), 1, + ACTIONS(2805), 1, + anon_sym_COMMA, + STATE(1393), 1, sym_text_interpolation, - STATE(1804), 1, - sym_namespace_name, - ACTIONS(2487), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [44973] = 6, + STATE(1436), 1, + aux_sym_function_static_declaration_repeat1, + ACTIONS(2858), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47664] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2554), 1, - sym_name, - STATE(582), 1, - sym__reserved_identifier, - STATE(1284), 1, + ACTIONS(2809), 1, + anon_sym_COMMA, + STATE(1394), 1, sym_text_interpolation, - ACTIONS(2214), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [44994] = 6, + STATE(1437), 1, + aux_sym_global_declaration_repeat1, + ACTIONS(2860), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47684] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2484), 1, - sym_name, - STATE(1285), 1, + STATE(1395), 1, sym_text_interpolation, - STATE(1866), 1, - sym_namespace_name, - ACTIONS(2487), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [45015] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON_COLON, - ACTIONS(2540), 1, + ACTIONS(2507), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(2546), 1, - anon_sym_LBRACK, - ACTIONS(2589), 1, - anon_sym_DASH_GT, - ACTIONS(2591), 1, - anon_sym_QMARK_DASH_GT, - STATE(1286), 1, + anon_sym_PIPE, + [47700] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2817), 1, + anon_sym_COMMA, + STATE(1396), 1, sym_text_interpolation, - [45040] = 6, + STATE(1439), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(2862), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47720] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2484), 1, - sym_name, - STATE(1287), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(2864), 1, + anon_sym_AMP, + ACTIONS(2866), 1, + anon_sym_DOT_DOT_DOT, + STATE(1397), 1, sym_text_interpolation, - STATE(1861), 1, - sym_namespace_name, - ACTIONS(2487), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [45061] = 7, + STATE(1618), 1, + sym_variable_name, + [47742] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(198), 1, - anon_sym_LBRACE, - ACTIONS(2595), 1, - anon_sym_BSLASH, - STATE(451), 1, - sym_compound_statement, - STATE(1288), 1, + STATE(1398), 1, sym_text_interpolation, - ACTIONS(2593), 2, + ACTIONS(2515), 4, sym__automatic_semicolon, anon_sym_SEMI, - [45084] = 8, + anon_sym_LBRACE, + anon_sym_PIPE, + [47758] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2492), 1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2491), 1, anon_sym_LBRACE, - ACTIONS(2494), 1, - anon_sym_COLON_COLON, - ACTIONS(2500), 1, - anon_sym_LBRACK, - ACTIONS(2597), 1, - anon_sym_DASH_GT, - ACTIONS(2599), 1, - anon_sym_QMARK_DASH_GT, - STATE(1289), 1, + STATE(423), 1, + sym_declaration_list, + STATE(1399), 1, sym_text_interpolation, - [45109] = 6, + STATE(1753), 1, + sym_class_interface_clause, + [47780] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2603), 1, - anon_sym_BSLASH, - STATE(1290), 1, + ACTIONS(2813), 1, + anon_sym_COMMA, + STATE(1400), 1, sym_text_interpolation, - STATE(1294), 1, - aux_sym_namespace_name_repeat1, - ACTIONS(2601), 3, + STATE(1447), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(2868), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [45130] = 6, + [47800] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2606), 1, - sym_name, - STATE(1291), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(2870), 1, + anon_sym_AMP, + ACTIONS(2872), 1, + anon_sym_DOT_DOT_DOT, + STATE(1401), 1, sym_text_interpolation, - STATE(1802), 1, - sym_namespace_name, - ACTIONS(2350), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [45151] = 6, + STATE(1514), 1, + sym_variable_name, + [47822] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2579), 1, - anon_sym_BSLASH, - STATE(1280), 1, - aux_sym_namespace_name_repeat1, - STATE(1292), 1, + STATE(1402), 1, sym_text_interpolation, - ACTIONS(2601), 3, + ACTIONS(2874), 4, anon_sym_COMMA, - aux_sym_namespace_aliasing_clause_token1, - anon_sym_RBRACE, - [45172] = 7, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47838] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, + ACTIONS(2443), 1, + aux_sym_base_clause_token1, + ACTIONS(2457), 1, anon_sym_LBRACE, - ACTIONS(2595), 1, - anon_sym_BSLASH, - STATE(1293), 1, + STATE(1403), 1, sym_text_interpolation, - STATE(1510), 1, - sym_compound_statement, - ACTIONS(2609), 2, + STATE(1641), 1, + sym_declaration_list, + STATE(1781), 1, + sym_base_clause, + [47860] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2795), 1, + anon_sym_COMMA, + STATE(1404), 1, + sym_text_interpolation, + STATE(1429), 1, + aux_sym_property_declaration_repeat2, + ACTIONS(2876), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45195] = 6, + [47880] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2611), 1, - anon_sym_BSLASH, - STATE(1253), 1, - aux_sym_namespace_name_repeat1, - STATE(1294), 1, + STATE(1405), 1, sym_text_interpolation, - ACTIONS(2577), 3, + ACTIONS(2676), 4, sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_BSLASH, anon_sym_LBRACE, - [45216] = 6, + [47896] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2484), 1, - sym_name, - STATE(1295), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(2878), 1, + anon_sym_AMP, + ACTIONS(2880), 1, + anon_sym_RPAREN, + STATE(1406), 1, sym_text_interpolation, - STATE(1855), 1, - sym_namespace_name, - ACTIONS(2487), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [45237] = 6, + STATE(1867), 1, + sym_variable_name, + [47918] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2616), 1, - anon_sym_EQ, - STATE(1296), 1, + ACTIONS(2813), 1, + anon_sym_COMMA, + STATE(1390), 1, + aux_sym__const_declaration_repeat1, + STATE(1407), 1, sym_text_interpolation, - STATE(1486), 1, - sym_property_initializer, - ACTIONS(2614), 3, + ACTIONS(2882), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [45258] = 7, + [47938] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_DOLLAR, - ACTIONS(2618), 1, - sym_name, - ACTIONS(2620), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - STATE(1297), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + STATE(917), 1, + sym_compound_statement, + STATE(1408), 1, sym_text_interpolation, - STATE(564), 2, - sym_dynamic_variable_name, - sym_variable_name, - [45281] = 6, + STATE(1796), 1, + sym__return_type, + [47960] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2528), 1, - anon_sym_PIPE, - STATE(1259), 1, - aux_sym_union_type_repeat1, - STATE(1298), 1, + ACTIONS(772), 1, + anon_sym_COMMA, + ACTIONS(2831), 1, + anon_sym_EQ, + ACTIONS(2884), 1, + anon_sym_RPAREN, + STATE(1409), 1, sym_text_interpolation, - ACTIONS(2505), 3, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_DOLLAR, - [45302] = 6, + STATE(1677), 1, + aux_sym__list_destructing_repeat1, + [47982] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2622), 1, - sym_name, - STATE(668), 1, - sym__reserved_identifier, - STATE(1299), 1, + STATE(1410), 1, sym_text_interpolation, - ACTIONS(2085), 3, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - [45323] = 7, + ACTIONS(2886), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47998] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2312), 1, - aux_sym_catch_clause_token1, - ACTIONS(2314), 1, - aux_sym_finally_clause_token1, - STATE(1159), 1, - aux_sym_try_statement_repeat1, - STATE(1300), 1, + STATE(1411), 1, sym_text_interpolation, - STATE(1262), 2, - sym_catch_clause, - sym_finally_clause, - [45346] = 8, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON_COLON, - ACTIONS(2624), 1, + ACTIONS(2888), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(2626), 1, - anon_sym_DASH_GT, - ACTIONS(2628), 1, - anon_sym_QMARK_DASH_GT, - ACTIONS(2630), 1, - anon_sym_LBRACK, - STATE(1301), 1, - sym_text_interpolation, - [45371] = 6, - ACTIONS(11), 1, + anon_sym_COLON, + [48014] = 6, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2632), 1, - ts_builtin_sym_end, - ACTIONS(2634), 1, - sym_php_tag, - ACTIONS(2636), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(1302), 2, + ACTIONS(2813), 1, + anon_sym_COMMA, + STATE(1390), 1, + aux_sym__const_declaration_repeat1, + STATE(1412), 1, sym_text_interpolation, - aux_sym_text_repeat1, - [45392] = 6, - ACTIONS(11), 1, + ACTIONS(2811), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48034] = 4, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2632), 1, - sym__eof, - ACTIONS(2634), 1, - sym_php_tag, - ACTIONS(2639), 2, - aux_sym_text_token1, - aux_sym_text_token2, - STATE(1303), 2, + STATE(1413), 1, sym_text_interpolation, - aux_sym_text_repeat1, - [45413] = 7, - ACTIONS(11), 1, + ACTIONS(2565), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [48050] = 7, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2480), 1, - sym__eof, - ACTIONS(2482), 1, - sym_php_tag, - STATE(1303), 1, - aux_sym_text_repeat1, - STATE(1304), 1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2491), 1, + anon_sym_LBRACE, + STATE(421), 1, + sym_declaration_list, + STATE(1414), 1, sym_text_interpolation, - ACTIONS(2400), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [45436] = 7, + STATE(1758), 1, + sym_class_interface_clause, + [48072] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(2642), 1, - anon_sym_AMP, - ACTIONS(2644), 1, - anon_sym_RPAREN, - STATE(1305), 1, + STATE(1415), 1, sym_text_interpolation, - STATE(1750), 1, - sym_variable_name, - [45458] = 6, + ACTIONS(2563), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PIPE, + [48088] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(2813), 1, anon_sym_COMMA, - STATE(1306), 1, + STATE(1390), 1, + aux_sym__const_declaration_repeat1, + STATE(1416), 1, sym_text_interpolation, - STATE(1351), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2646), 2, + ACTIONS(2890), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45478] = 7, + [48108] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2384), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - STATE(921), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + STATE(869), 1, sym_compound_statement, - STATE(1307), 1, + STATE(1417), 1, sym_text_interpolation, - STATE(1709), 1, + STATE(1765), 1, sym__return_type, - [45500] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1308), 1, - sym_text_interpolation, - STATE(1836), 1, - sym_declare_directive, - ACTIONS(2650), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [45518] = 6, + [48130] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(2813), 1, anon_sym_COMMA, - STATE(1309), 1, + STATE(1416), 1, + aux_sym__const_declaration_repeat1, + STATE(1418), 1, sym_text_interpolation, - STATE(1335), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2652), 2, + ACTIONS(2892), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45538] = 7, + [48150] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2322), 1, - anon_sym_LBRACE, - ACTIONS(2324), 1, - aux_sym_base_clause_token1, - STATE(1310), 1, + ACTIONS(2896), 1, + anon_sym_PIPE, + ACTIONS(2894), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + STATE(1419), 2, sym_text_interpolation, - STATE(1483), 1, - sym_declaration_list, - STATE(1686), 1, - sym_base_clause, - [45560] = 6, + aux_sym_type_list_repeat1, + [48168] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2656), 1, - anon_sym_COMMA, - STATE(1311), 1, + STATE(1420), 1, sym_text_interpolation, - STATE(1341), 1, - aux_sym_const_declaration_repeat1, - ACTIONS(2654), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [45580] = 6, + ACTIONS(2888), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON, + [48184] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2813), 1, anon_sym_COMMA, - STATE(1312), 1, + STATE(1390), 1, + aux_sym__const_declaration_repeat1, + STATE(1421), 1, sym_text_interpolation, - STATE(1343), 1, - aux_sym_const_declaration_repeat1, - ACTIONS(2658), 2, + ACTIONS(2892), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45600] = 7, + [48204] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2326), 1, + ACTIONS(2445), 1, aux_sym_class_interface_clause_token1, - ACTIONS(2390), 1, + ACTIONS(2491), 1, anon_sym_LBRACE, - STATE(409), 1, + STATE(413), 1, sym_declaration_list, - STATE(1313), 1, + STATE(1422), 1, sym_text_interpolation, - STATE(1705), 1, + STATE(1769), 1, sym_class_interface_clause, - [45622] = 4, + [48226] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1314), 1, + STATE(1423), 1, sym_text_interpolation, - ACTIONS(2660), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON, - [45638] = 4, + STATE(1931), 1, + sym_declare_directive, + ACTIONS(2799), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [48244] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1315), 1, + ACTIONS(2901), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1424), 1, sym_text_interpolation, - ACTIONS(2662), 4, + STATE(1778), 1, + sym_namespace_aliasing_clause, + ACTIONS(2899), 2, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [45654] = 4, + anon_sym_RBRACE, + [48264] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1316), 1, - sym_text_interpolation, - ACTIONS(2664), 4, + ACTIONS(2813), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [45670] = 7, + STATE(1421), 1, + aux_sym__const_declaration_repeat1, + STATE(1425), 1, + sym_text_interpolation, + ACTIONS(2903), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48284] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2666), 1, + ACTIONS(2907), 1, anon_sym_COMMA, - ACTIONS(2668), 1, - anon_sym_EQ, - ACTIONS(2670), 1, - anon_sym_RBRACK, - STATE(1317), 1, + ACTIONS(2905), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1426), 2, sym_text_interpolation, - STATE(1521), 1, - aux_sym__array_destructing_repeat1, - [45692] = 6, + aux_sym_namespace_use_declaration_repeat1, + [48302] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(2795), 1, anon_sym_COMMA, - STATE(1318), 1, + STATE(1427), 1, sym_text_interpolation, - STATE(1366), 1, + STATE(1429), 1, aux_sym_property_declaration_repeat2, - ACTIONS(2672), 2, + ACTIONS(2910), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45712] = 7, + [48322] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2676), 1, - anon_sym_SEMI, - ACTIONS(2678), 1, - anon_sym_LBRACE, - ACTIONS(2680), 1, + STATE(1428), 1, + sym_text_interpolation, + STATE(1943), 1, + sym_declare_directive, + ACTIONS(2799), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [48340] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2914), 1, + anon_sym_COMMA, + ACTIONS(2912), 2, sym__automatic_semicolon, - STATE(1100), 1, - sym_compound_statement, - STATE(1319), 1, + anon_sym_SEMI, + STATE(1429), 2, sym_text_interpolation, - [45734] = 6, + aux_sym_property_declaration_repeat2, + [48358] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2682), 1, + ACTIONS(2817), 1, anon_sym_COMMA, - STATE(1320), 1, + STATE(1426), 1, + aux_sym_namespace_use_declaration_repeat1, + STATE(1430), 1, sym_text_interpolation, - STATE(1368), 1, - aux_sym_base_clause_repeat1, - ACTIONS(2684), 2, + ACTIONS(2917), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48378] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1431), 1, + sym_text_interpolation, + ACTIONS(2919), 4, + aux_sym_function_static_declaration_token1, + anon_sym_self, + anon_sym_parent, + sym_name, + [48394] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2441), 1, anon_sym_LBRACE, + ACTIONS(2445), 1, aux_sym_class_interface_clause_token1, - [45754] = 4, + STATE(938), 1, + sym_declaration_list, + STATE(1432), 1, + sym_text_interpolation, + STATE(1755), 1, + sym_class_interface_clause, + [48416] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1321), 1, + ACTIONS(2923), 1, + anon_sym_COMMA, + ACTIONS(2921), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1433), 2, sym_text_interpolation, - ACTIONS(1397), 4, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, - anon_sym_DOLLAR, - [45770] = 4, + aux_sym_global_declaration_repeat1, + [48434] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1322), 1, + STATE(1434), 1, sym_text_interpolation, - ACTIONS(2418), 4, + ACTIONS(2505), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [45786] = 6, + [48450] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + STATE(1435), 1, + sym_text_interpolation, + ACTIONS(2926), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + [48466] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(2688), 1, + ACTIONS(2805), 1, anon_sym_COMMA, - STATE(1323), 1, + STATE(1436), 1, sym_text_interpolation, - STATE(1402), 1, + STATE(1444), 1, aux_sym_function_static_declaration_repeat1, - ACTIONS(2686), 2, + ACTIONS(2928), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45806] = 7, + [48486] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2326), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2328), 1, - anon_sym_LBRACE, - STATE(929), 1, - sym_declaration_list, - STATE(1324), 1, + ACTIONS(2809), 1, + anon_sym_COMMA, + STATE(1433), 1, + aux_sym_global_declaration_repeat1, + STATE(1437), 1, sym_text_interpolation, - STATE(1700), 1, - sym_class_interface_clause, - [45828] = 5, + ACTIONS(2930), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48506] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2692), 1, - anon_sym_EQ, - STATE(1325), 1, + ACTIONS(2817), 1, + anon_sym_COMMA, + STATE(1438), 1, sym_text_interpolation, - ACTIONS(2690), 3, + STATE(1476), 1, + aux_sym_namespace_use_declaration_repeat1, + ACTIONS(2932), 2, sym__automatic_semicolon, anon_sym_SEMI, + [48526] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2817), 1, anon_sym_COMMA, - [45846] = 5, - ACTIONS(11), 1, + STATE(1426), 1, + aux_sym_namespace_use_declaration_repeat1, + STATE(1439), 1, + sym_text_interpolation, + ACTIONS(2932), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48546] = 6, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2696), 1, - sym__eof, - STATE(1326), 1, + ACTIONS(2837), 1, + anon_sym_COMMA, + STATE(1440), 1, + sym_text_interpolation, + STATE(1483), 1, + aux_sym_base_clause_repeat1, + ACTIONS(2934), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [48566] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2491), 1, + anon_sym_LBRACE, + STATE(414), 1, + sym_declaration_list, + STATE(1441), 1, + sym_text_interpolation, + STATE(1896), 1, + sym_class_interface_clause, + [48588] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2901), 1, + aux_sym_namespace_aliasing_clause_token1, + STATE(1442), 1, sym_text_interpolation, - ACTIONS(2694), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [45864] = 6, + STATE(1887), 1, + sym_namespace_aliasing_clause, + ACTIONS(2936), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [48608] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2700), 1, - anon_sym_COMMA, - STATE(1327), 1, + STATE(1443), 1, sym_text_interpolation, - STATE(1405), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(2698), 2, + ACTIONS(2557), 4, sym__automatic_semicolon, anon_sym_SEMI, - [45884] = 6, + anon_sym_LBRACE, + anon_sym_PIPE, + [48624] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2700), 1, + ACTIONS(2940), 1, anon_sym_COMMA, - STATE(1328), 1, - sym_text_interpolation, - STATE(1333), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(2702), 2, + ACTIONS(2938), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45904] = 6, + STATE(1444), 2, + sym_text_interpolation, + aux_sym_function_static_declaration_repeat1, + [48642] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2688), 1, + ACTIONS(2795), 1, anon_sym_COMMA, - STATE(1329), 1, + STATE(1404), 1, + aux_sym_property_declaration_repeat2, + STATE(1445), 1, sym_text_interpolation, - STATE(1332), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(2704), 2, + ACTIONS(2943), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45924] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1330), 1, - sym_text_interpolation, - STATE(1856), 1, - sym_declare_directive, - ACTIONS(2650), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [45942] = 4, + [48662] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - STATE(1331), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + STATE(752), 1, + sym_compound_statement, + STATE(1446), 1, sym_text_interpolation, - ACTIONS(2706), 4, - anon_sym_RBRACE, - aux_sym_match_default_expression_token1, - aux_sym_switch_block_token1, - aux_sym_case_statement_token1, - [45958] = 6, + STATE(1835), 1, + sym__return_type, + [48684] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2688), 1, + ACTIONS(2813), 1, anon_sym_COMMA, - STATE(1332), 1, + STATE(1390), 1, + aux_sym__const_declaration_repeat1, + STATE(1447), 1, sym_text_interpolation, - STATE(1361), 1, - aux_sym_function_static_declaration_repeat1, - ACTIONS(2708), 2, + ACTIONS(2945), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45978] = 6, + [48704] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2700), 1, + ACTIONS(2795), 1, anon_sym_COMMA, - STATE(1333), 1, + STATE(1429), 1, + aux_sym_property_declaration_repeat2, + STATE(1448), 1, sym_text_interpolation, - STATE(1353), 1, - aux_sym_global_declaration_repeat1, - ACTIONS(2710), 2, + ACTIONS(2947), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45998] = 6, + [48724] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2648), 1, - anon_sym_COMMA, - STATE(1334), 1, + STATE(1449), 1, sym_text_interpolation, - STATE(1370), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2712), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46018] = 6, + ACTIONS(2949), 4, + aux_sym_namespace_use_declaration_token1, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_COLON, + [48740] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2648), 1, - anon_sym_COMMA, - STATE(1335), 1, + ACTIONS(2441), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + STATE(1291), 1, + sym_declaration_list, + STATE(1450), 1, sym_text_interpolation, - STATE(1350), 1, - aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2712), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46038] = 6, + STATE(1837), 1, + sym_class_interface_clause, + [48762] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2716), 1, - anon_sym_PIPE, - STATE(1336), 1, + ACTIONS(2443), 1, + aux_sym_base_clause_token1, + ACTIONS(2951), 1, + anon_sym_LBRACE, + STATE(513), 1, + sym_declaration_list, + STATE(1451), 1, sym_text_interpolation, - STATE(1371), 1, - aux_sym_type_list_repeat1, - ACTIONS(2714), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - [46058] = 4, + STATE(1802), 1, + sym_base_clause, + [48784] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1337), 1, + ACTIONS(2813), 1, + anon_sym_COMMA, + STATE(1412), 1, + aux_sym__const_declaration_repeat1, + STATE(1452), 1, sym_text_interpolation, - ACTIONS(1404), 4, - anon_sym_AMP, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE, + ACTIONS(2953), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48804] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1727), 1, anon_sym_DOLLAR, - [46074] = 6, + ACTIONS(2878), 1, + anon_sym_AMP, + ACTIONS(2955), 1, + anon_sym_RPAREN, + STATE(1453), 1, + sym_text_interpolation, + STATE(1867), 1, + sym_variable_name, + [48826] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(2817), 1, anon_sym_COMMA, - STATE(1338), 1, - sym_text_interpolation, - STATE(1386), 1, + STATE(1379), 1, aux_sym_namespace_use_declaration_repeat1, - ACTIONS(2718), 2, + STATE(1454), 1, + sym_text_interpolation, + ACTIONS(2957), 2, sym__automatic_semicolon, anon_sym_SEMI, - [46094] = 6, + [48846] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1455), 1, + sym_text_interpolation, + STATE(2062), 1, + sym_declare_directive, + ACTIONS(2799), 3, + anon_sym_ticks, + anon_sym_encoding, + anon_sym_strict_types, + [48864] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_COMMA, - STATE(1320), 1, - aux_sym_base_clause_repeat1, - STATE(1339), 1, + ACTIONS(11), 1, + anon_sym_QMARK_GT, + ACTIONS(2825), 1, + ts_builtin_sym_end, + STATE(1456), 1, sym_text_interpolation, - ACTIONS(2720), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [46114] = 7, + ACTIONS(2823), 3, + sym_php_tag, + aux_sym_text_token1, + aux_sym_text_token2, + [48882] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2678), 1, + ACTIONS(2843), 1, anon_sym_LBRACE, - ACTIONS(2722), 1, + ACTIONS(2959), 1, anon_sym_SEMI, - ACTIONS(2724), 1, + ACTIONS(2961), 1, sym__automatic_semicolon, - STATE(1114), 1, + STATE(1118), 1, sym_compound_statement, - STATE(1340), 1, + STATE(1457), 1, sym_text_interpolation, - [46136] = 5, + [48904] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(2809), 1, anon_sym_COMMA, - ACTIONS(2726), 2, + STATE(1375), 1, + aux_sym_global_declaration_repeat1, + STATE(1458), 1, + sym_text_interpolation, + ACTIONS(2963), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1341), 2, - sym_text_interpolation, - aux_sym_const_declaration_repeat1, - [46154] = 7, + [48924] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2457), 1, anon_sym_LBRACE, - ACTIONS(2370), 1, - anon_sym_COLON, - STATE(735), 1, - sym_compound_statement, - STATE(1342), 1, + STATE(773), 1, + sym_declaration_list, + STATE(1459), 1, sym_text_interpolation, - STATE(1738), 1, - sym__return_type, - [46176] = 6, + STATE(1861), 1, + sym_class_interface_clause, + [48946] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2967), 1, + anon_sym_EQ, + STATE(1460), 1, + sym_text_interpolation, + ACTIONS(2965), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - STATE(1341), 1, - aux_sym_const_declaration_repeat1, - STATE(1343), 1, + [48964] = 6, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2805), 1, + anon_sym_COMMA, + STATE(1374), 1, + aux_sym_function_static_declaration_repeat1, + STATE(1461), 1, sym_text_interpolation, - ACTIONS(2731), 2, + ACTIONS(2969), 2, sym__automatic_semicolon, anon_sym_SEMI, - [46196] = 4, + [48984] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1344), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(2878), 1, + anon_sym_AMP, + ACTIONS(2971), 1, + anon_sym_RPAREN, + STATE(1462), 1, + sym_text_interpolation, + STATE(1867), 1, + sym_variable_name, + [49006] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1463), 1, sym_text_interpolation, - ACTIONS(2733), 4, + ACTIONS(2926), 4, aux_sym_namespace_use_declaration_token1, anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_COLON, - [46212] = 4, + [49022] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1345), 1, + STATE(1464), 1, sym_text_interpolation, - ACTIONS(2735), 4, + ACTIONS(2973), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, - [46228] = 7, + [49038] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2326), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2328), 1, + STATE(1465), 1, + sym_text_interpolation, + ACTIONS(2975), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49054] = 7, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(1241), 1, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + STATE(1331), 1, sym_declaration_list, - STATE(1346), 1, + STATE(1466), 1, sym_text_interpolation, - STATE(1741), 1, + STATE(1889), 1, sym_class_interface_clause, - [46250] = 6, + [49076] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2813), 1, anon_sym_COMMA, - STATE(1347), 1, + STATE(1467), 1, sym_text_interpolation, - STATE(1388), 1, - aux_sym_const_declaration_repeat1, - ACTIONS(2737), 2, + STATE(1471), 1, + aux_sym__const_declaration_repeat1, + ACTIONS(2945), 2, sym__automatic_semicolon, anon_sym_SEMI, - [46270] = 4, + [49096] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - STATE(1348), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + STATE(751), 1, + sym_compound_statement, + STATE(1468), 1, sym_text_interpolation, - ACTIONS(2739), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46286] = 7, + STATE(1907), 1, + sym__return_type, + [49118] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2324), 1, - aux_sym_base_clause_token1, - ACTIONS(2741), 1, - anon_sym_LBRACE, - STATE(449), 1, - sym_declaration_list, - STATE(1349), 1, + ACTIONS(2849), 1, + anon_sym_PIPE, + STATE(1419), 1, + aux_sym_type_list_repeat1, + STATE(1469), 1, sym_text_interpolation, - STATE(1773), 1, - sym_base_clause, - [46308] = 5, + ACTIONS(2977), 2, + anon_sym_RPAREN, + anon_sym_DOLLAR, + [49138] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2745), 1, - anon_sym_COMMA, - ACTIONS(2743), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1350), 2, + ACTIONS(2441), 1, + anon_sym_LBRACE, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + STATE(1356), 1, + sym_declaration_list, + STATE(1470), 1, sym_text_interpolation, - aux_sym_namespace_use_declaration_repeat1, - [46326] = 6, + STATE(1909), 1, + sym_class_interface_clause, + [49160] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(2813), 1, anon_sym_COMMA, - STATE(1350), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1351), 1, + STATE(1390), 1, + aux_sym__const_declaration_repeat1, + STATE(1471), 1, sym_text_interpolation, - ACTIONS(2748), 2, + ACTIONS(2979), 2, sym__automatic_semicolon, anon_sym_SEMI, - [46346] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1352), 1, - sym_text_interpolation, - ACTIONS(2750), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [46362] = 5, + [49180] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2754), 1, - anon_sym_COMMA, - ACTIONS(2752), 2, - sym__automatic_semicolon, + ACTIONS(2843), 1, + anon_sym_LBRACE, + ACTIONS(2981), 1, anon_sym_SEMI, - STATE(1353), 2, + ACTIONS(2983), 1, + sym__automatic_semicolon, + STATE(1144), 1, + sym_compound_statement, + STATE(1472), 1, sym_text_interpolation, - aux_sym_global_declaration_repeat1, - [46380] = 6, + [49202] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2759), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1354), 1, + STATE(1473), 1, sym_text_interpolation, - STATE(1751), 1, - sym_namespace_aliasing_clause, - ACTIONS(2757), 2, + ACTIONS(2765), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACE, - [46400] = 7, + anon_sym_LBRACE, + [49218] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2322), 1, + ACTIONS(2441), 1, anon_sym_LBRACE, - ACTIONS(2326), 1, + ACTIONS(2445), 1, aux_sym_class_interface_clause_token1, - STATE(719), 1, + STATE(1361), 1, sym_declaration_list, - STATE(1355), 1, + STATE(1474), 1, sym_text_interpolation, - STATE(1769), 1, + STATE(1914), 1, sym_class_interface_clause, - [46422] = 5, + [49240] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - STATE(1356), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + STATE(765), 1, + sym_compound_statement, + STATE(1475), 1, sym_text_interpolation, - STATE(1912), 1, - sym_declare_directive, - ACTIONS(2650), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [46440] = 4, + STATE(1874), 1, + sym__return_type, + [49262] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1357), 1, + ACTIONS(2817), 1, + anon_sym_COMMA, + STATE(1426), 1, + aux_sym_namespace_use_declaration_repeat1, + STATE(1476), 1, sym_text_interpolation, - ACTIONS(2438), 4, + ACTIONS(2985), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - [46456] = 4, + [49282] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1358), 1, + ACTIONS(2795), 1, + anon_sym_COMMA, + STATE(1448), 1, + aux_sym_property_declaration_repeat2, + STATE(1477), 1, sym_text_interpolation, - ACTIONS(2761), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON, - [46472] = 4, + ACTIONS(2987), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49302] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1359), 1, + STATE(1478), 1, sym_text_interpolation, - ACTIONS(2761), 4, + ACTIONS(2949), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [46488] = 4, + [49318] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1360), 1, - sym_text_interpolation, - ACTIONS(2763), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2487), 1, anon_sym_LBRACE, + ACTIONS(2489), 1, anon_sym_COLON, - [46504] = 5, + STATE(887), 1, + sym_compound_statement, + STATE(1479), 1, + sym_text_interpolation, + STATE(1821), 1, + sym__return_type, + [49340] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(2795), 1, anon_sym_COMMA, - ACTIONS(2765), 2, + STATE(1427), 1, + aux_sym_property_declaration_repeat2, + STATE(1480), 1, + sym_text_interpolation, + ACTIONS(2989), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1361), 2, - sym_text_interpolation, - aux_sym_function_static_declaration_repeat1, - [46522] = 4, + [49360] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1362), 1, + ACTIONS(2795), 1, + anon_sym_COMMA, + STATE(1366), 1, + aux_sym_property_declaration_repeat2, + STATE(1481), 1, sym_text_interpolation, - ACTIONS(2416), 4, + ACTIONS(2991), 2, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [46538] = 6, + [49380] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2656), 1, - anon_sym_COMMA, - STATE(1363), 1, - sym_text_interpolation, - STATE(1399), 1, - aux_sym_const_declaration_repeat1, - ACTIONS(2731), 2, - sym__automatic_semicolon, + ACTIONS(2843), 1, + anon_sym_LBRACE, + ACTIONS(2993), 1, anon_sym_SEMI, - [46558] = 7, + ACTIONS(2995), 1, + sym__automatic_semicolon, + STATE(1126), 1, + sym_compound_statement, + STATE(1482), 1, + sym_text_interpolation, + [49402] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(2642), 1, - anon_sym_AMP, - ACTIONS(2770), 1, - anon_sym_RPAREN, - STATE(1364), 1, + ACTIONS(2997), 1, + anon_sym_COMMA, + ACTIONS(2765), 2, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + STATE(1483), 2, sym_text_interpolation, - STATE(1750), 1, - sym_variable_name, - [46580] = 4, + aux_sym_base_clause_repeat1, + [49420] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1365), 1, - sym_text_interpolation, - ACTIONS(2420), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2445), 1, + aux_sym_class_interface_clause_token1, + ACTIONS(2457), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [46596] = 6, + STATE(756), 1, + sym_declaration_list, + STATE(1484), 1, + sym_text_interpolation, + STATE(1916), 1, + sym_class_interface_clause, + [49442] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2674), 1, - anon_sym_COMMA, - STATE(1366), 1, + ACTIONS(2757), 1, + anon_sym_BSLASH, + ACTIONS(3000), 1, + sym_name, + STATE(1485), 1, sym_text_interpolation, - STATE(1400), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(2772), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46616] = 6, + STATE(1932), 1, + sym_namespace_name, + [49461] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2674), 1, - anon_sym_COMMA, - STATE(1367), 1, + ACTIONS(1019), 1, + aux_sym_else_clause_token1, + STATE(1486), 1, sym_text_interpolation, - STATE(1408), 1, - aux_sym_property_declaration_repeat2, - ACTIONS(2774), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46636] = 5, + ACTIONS(1017), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49478] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2776), 1, - anon_sym_COMMA, - ACTIONS(2438), 2, - anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - STATE(1368), 2, + ACTIONS(1235), 1, + aux_sym_else_clause_token1, + STATE(1487), 1, sym_text_interpolation, - aux_sym_base_clause_repeat1, - [46654] = 7, + ACTIONS(1233), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49495] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - ACTIONS(2370), 1, - anon_sym_COLON, - STATE(731), 1, - sym_compound_statement, - STATE(1369), 1, + ACTIONS(1542), 1, + anon_sym_DOLLAR, + STATE(1323), 1, + sym_variable_name, + STATE(1445), 1, + sym_property_element, + STATE(1488), 1, sym_text_interpolation, - STATE(1795), 1, - sym__return_type, - [46676] = 6, + [49514] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2648), 1, - anon_sym_COMMA, - STATE(1350), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1370), 1, + ACTIONS(1542), 1, + anon_sym_DOLLAR, + STATE(1323), 1, + sym_variable_name, + STATE(1489), 1, sym_text_interpolation, - ACTIONS(2779), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46696] = 6, + STATE(1565), 1, + sym_property_element, + [49533] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2716), 1, - anon_sym_PIPE, - STATE(1371), 1, - sym_text_interpolation, - STATE(1390), 1, - aux_sym_type_list_repeat1, - ACTIONS(2781), 2, + ACTIONS(716), 1, anon_sym_RPAREN, - anon_sym_DOLLAR, - [46716] = 7, + ACTIONS(3002), 1, + anon_sym_COMMA, + STATE(1490), 1, + sym_text_interpolation, + STATE(1551), 1, + aux_sym_array_creation_expression_repeat1, + [49552] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2384), 1, - anon_sym_LBRACE, - STATE(917), 1, - sym_compound_statement, - STATE(1372), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(3004), 1, + anon_sym_AMP, + STATE(1491), 1, sym_text_interpolation, - STATE(1626), 1, - sym__return_type, - [46738] = 6, + STATE(1498), 1, + sym_formal_parameters, + [49571] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2656), 1, - anon_sym_COMMA, - STATE(1311), 1, - aux_sym_const_declaration_repeat1, - STATE(1373), 1, + ACTIONS(1183), 1, + aux_sym_else_clause_token1, + STATE(1492), 1, sym_text_interpolation, - ACTIONS(2783), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46758] = 4, + ACTIONS(1181), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49588] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1374), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(3006), 1, + anon_sym_AMP, + STATE(1493), 1, sym_text_interpolation, - ACTIONS(2406), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [46774] = 4, + STATE(1499), 1, + sym_formal_parameters, + [49607] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1375), 1, - sym_text_interpolation, - ACTIONS(2660), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2489), 1, anon_sym_COLON, - [46790] = 4, + ACTIONS(3008), 1, + anon_sym_EQ_GT, + STATE(1494), 1, + sym_text_interpolation, + STATE(1944), 1, + sym__return_type, + [49626] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1376), 1, + STATE(1495), 1, sym_text_interpolation, - ACTIONS(2785), 4, + ACTIONS(2765), 3, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46806] = 4, + anon_sym_LBRACE, + aux_sym_class_interface_clause_token1, + [49641] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1377), 1, - sym_text_interpolation, - ACTIONS(2469), 4, + ACTIONS(3010), 1, anon_sym_COMMA, - anon_sym_BSLASH, - aux_sym_namespace_aliasing_clause_token1, + ACTIONS(3012), 1, anon_sym_RBRACE, - [46822] = 5, + STATE(1496), 1, + sym_text_interpolation, + STATE(1523), 1, + aux_sym_match_block_repeat1, + [49660] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1378), 1, + ACTIONS(1155), 1, + aux_sym_else_clause_token1, + STATE(1497), 1, sym_text_interpolation, - STATE(1816), 1, - sym_declare_directive, - ACTIONS(2650), 3, - anon_sym_ticks, - anon_sym_encoding, - anon_sym_strict_types, - [46840] = 4, + ACTIONS(1153), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49677] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1379), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(3014), 1, + anon_sym_EQ_GT, + STATE(1498), 1, sym_text_interpolation, - ACTIONS(2787), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46856] = 4, + STATE(1942), 1, + sym__return_type, + [49696] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1380), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(3016), 1, + anon_sym_EQ_GT, + STATE(1499), 1, sym_text_interpolation, - ACTIONS(2789), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46872] = 7, + STATE(1940), 1, + sym__return_type, + [49715] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(2642), 1, - anon_sym_AMP, - ACTIONS(2791), 1, - anon_sym_RPAREN, - STATE(1381), 1, + ACTIONS(1095), 1, + aux_sym_else_clause_token1, + STATE(1500), 1, sym_text_interpolation, - STATE(1750), 1, - sym_variable_name, - [46894] = 4, + ACTIONS(1093), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49732] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1382), 1, - sym_text_interpolation, - ACTIONS(2793), 4, + ACTIONS(3018), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(3020), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [46910] = 7, + STATE(1501), 1, + sym_text_interpolation, + STATE(1573), 1, + aux_sym_arguments_repeat1, + [49751] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(785), 1, - anon_sym_COMMA, - ACTIONS(2668), 1, - anon_sym_EQ, - ACTIONS(2795), 1, + ACTIONS(1807), 1, anon_sym_RPAREN, - STATE(1383), 1, + ACTIONS(3022), 1, + anon_sym_COMMA, + STATE(1502), 1, sym_text_interpolation, - STATE(1588), 1, - aux_sym__list_destructing_repeat1, - [46932] = 7, + STATE(1534), 1, + aux_sym_formal_parameters_repeat1, + [49770] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2326), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2328), 1, - anon_sym_LBRACE, - STATE(912), 1, - sym_declaration_list, - STATE(1384), 1, + ACTIONS(2971), 1, + anon_sym_RPAREN, + ACTIONS(3024), 1, + anon_sym_COMMA, + STATE(1503), 1, sym_text_interpolation, - STATE(1651), 1, - sym_class_interface_clause, - [46954] = 5, - ACTIONS(11), 1, + STATE(1548), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [49789] = 6, + ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(15), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2696), 1, - ts_builtin_sym_end, - STATE(1385), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(3026), 1, + anon_sym_EQ_GT, + STATE(1504), 1, sym_text_interpolation, - ACTIONS(2694), 3, - sym_php_tag, - aux_sym_text_token1, - aux_sym_text_token2, - [46972] = 6, + STATE(1978), 1, + sym__return_type, + [49808] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2648), 1, - anon_sym_COMMA, - STATE(1350), 1, - aux_sym_namespace_use_declaration_repeat1, - STATE(1386), 1, + ACTIONS(1255), 1, + aux_sym_else_clause_token1, + STATE(1505), 1, sym_text_interpolation, - ACTIONS(2646), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46992] = 4, + ACTIONS(1253), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49825] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1387), 1, + ACTIONS(1119), 1, + aux_sym_else_clause_token1, + STATE(1506), 1, sym_text_interpolation, - ACTIONS(2350), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [47008] = 6, + ACTIONS(1117), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49842] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2656), 1, - anon_sym_COMMA, - STATE(1341), 1, - aux_sym_const_declaration_repeat1, - STATE(1388), 1, + ACTIONS(1075), 1, + aux_sym_else_clause_token1, + STATE(1507), 1, sym_text_interpolation, - ACTIONS(2783), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47028] = 7, + ACTIONS(1073), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49859] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2326), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2390), 1, - anon_sym_LBRACE, - STATE(413), 1, - sym_declaration_list, - STATE(1389), 1, + ACTIONS(1259), 1, + aux_sym_else_clause_token1, + STATE(1508), 1, sym_text_interpolation, - STATE(1676), 1, - sym_class_interface_clause, - [47050] = 5, + ACTIONS(1257), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49876] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2799), 1, - anon_sym_PIPE, - ACTIONS(2797), 2, - anon_sym_RPAREN, - anon_sym_DOLLAR, - STATE(1390), 2, + ACTIONS(1267), 1, + aux_sym_else_clause_token1, + STATE(1509), 1, sym_text_interpolation, - aux_sym_type_list_repeat1, - [47068] = 6, + ACTIONS(1265), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49893] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2759), 1, - aux_sym_namespace_aliasing_clause_token1, - STATE(1391), 1, + ACTIONS(1031), 1, + aux_sym_else_clause_token1, + STATE(1510), 1, sym_text_interpolation, - STATE(1714), 1, - sym_namespace_aliasing_clause, - ACTIONS(2802), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [47088] = 7, + ACTIONS(1029), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49910] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2384), 1, - anon_sym_LBRACE, - STATE(906), 1, - sym_compound_statement, - STATE(1392), 1, + ACTIONS(3028), 1, + anon_sym_COMMA, + ACTIONS(3030), 1, + anon_sym_RPAREN, + STATE(1503), 1, + aux_sym_anonymous_function_use_clause_repeat1, + STATE(1511), 1, sym_text_interpolation, - STATE(1683), 1, - sym__return_type, - [47110] = 7, + [49929] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2322), 1, - anon_sym_LBRACE, - ACTIONS(2326), 1, - aux_sym_class_interface_clause_token1, - STATE(751), 1, - sym_declaration_list, - STATE(1393), 1, + ACTIONS(1267), 1, + aux_sym_else_clause_token1, + STATE(1512), 1, sym_text_interpolation, - STATE(1621), 1, - sym_class_interface_clause, - [47132] = 4, + ACTIONS(1265), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49946] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1394), 1, + ACTIONS(3034), 1, + aux_sym_else_clause_token1, + STATE(1513), 1, sym_text_interpolation, - ACTIONS(2469), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_BSLASH, - anon_sym_LBRACE, - [47148] = 4, + ACTIONS(3032), 2, + aux_sym_if_statement_token2, + aux_sym_else_if_clause_token1, + [49963] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1395), 1, + ACTIONS(3038), 1, + anon_sym_EQ, + STATE(1514), 1, sym_text_interpolation, - ACTIONS(2763), 4, - aux_sym_namespace_use_declaration_token1, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_COLON, - [47164] = 7, + ACTIONS(3036), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [49980] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2326), 1, - aux_sym_class_interface_clause_token1, - ACTIONS(2328), 1, - anon_sym_LBRACE, - STATE(1263), 1, - sym_declaration_list, - STATE(1396), 1, + ACTIONS(1035), 1, + aux_sym_else_clause_token1, + STATE(1515), 1, sym_text_interpolation, - STATE(1787), 1, - sym_class_interface_clause, - [47186] = 4, + ACTIONS(1033), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [49997] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1397), 1, + STATE(1516), 1, sym_text_interpolation, - ACTIONS(2733), 4, + ACTIONS(2938), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - [47202] = 4, + anon_sym_COMMA, + [50012] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1398), 1, + ACTIONS(1111), 1, + aux_sym_else_clause_token1, + STATE(1517), 1, sym_text_interpolation, - ACTIONS(2396), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [47218] = 6, + ACTIONS(1109), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50029] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2656), 1, - anon_sym_COMMA, - STATE(1341), 1, - aux_sym_const_declaration_repeat1, - STATE(1399), 1, + STATE(1518), 1, sym_text_interpolation, - ACTIONS(2804), 2, + ACTIONS(3040), 3, sym__automatic_semicolon, anon_sym_SEMI, - [47238] = 5, + anon_sym_COMMA, + [50044] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2808), 1, - anon_sym_COMMA, - ACTIONS(2806), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1400), 2, + ACTIONS(1115), 1, + aux_sym_else_clause_token1, + STATE(1519), 1, sym_text_interpolation, - aux_sym_property_declaration_repeat2, - [47256] = 7, + ACTIONS(1113), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50061] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, + ACTIONS(1727), 1, anon_sym_DOLLAR, - ACTIONS(2811), 1, - anon_sym_AMP, - ACTIONS(2813), 1, + ACTIONS(3042), 1, anon_sym_DOT_DOT_DOT, - STATE(1401), 1, + STATE(1520), 1, sym_text_interpolation, - STATE(1545), 1, + STATE(1544), 1, sym_variable_name, - [47278] = 6, + [50080] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2688), 1, + ACTIONS(3044), 1, anon_sym_COMMA, - STATE(1361), 1, - aux_sym_function_static_declaration_repeat1, - STATE(1402), 1, + ACTIONS(3047), 1, + anon_sym_RBRACE, + STATE(1521), 2, sym_text_interpolation, - ACTIONS(2815), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47298] = 7, + aux_sym_match_block_repeat1, + [50097] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - ACTIONS(2370), 1, - anon_sym_COLON, - STATE(749), 1, - sym_compound_statement, - STATE(1403), 1, + ACTIONS(1127), 1, + aux_sym_else_clause_token1, + STATE(1522), 1, sym_text_interpolation, - STATE(1784), 1, - sym__return_type, - [47320] = 7, + ACTIONS(1125), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50114] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2666), 1, + ACTIONS(710), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, anon_sym_COMMA, - ACTIONS(2668), 1, - anon_sym_EQ, - ACTIONS(2817), 1, - anon_sym_RBRACK, - STATE(1404), 1, + STATE(1521), 1, + aux_sym_match_block_repeat1, + STATE(1523), 1, sym_text_interpolation, - STATE(1452), 1, - aux_sym__array_destructing_repeat1, - [47342] = 6, + [50133] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2700), 1, + ACTIONS(2038), 1, + anon_sym_EQ_GT, + ACTIONS(3051), 1, anon_sym_COMMA, - STATE(1353), 1, - aux_sym_global_declaration_repeat1, - STATE(1405), 1, + STATE(1524), 2, sym_text_interpolation, - ACTIONS(2819), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47362] = 4, + aux_sym_match_condition_list_repeat1, + [50150] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1406), 1, + ACTIONS(3056), 1, + anon_sym_EQ, + STATE(1525), 1, sym_text_interpolation, - ACTIONS(2372), 4, - aux_sym_function_static_declaration_token1, - anon_sym_self, - anon_sym_parent, - sym_name, - [47378] = 4, + ACTIONS(3054), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50167] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1407), 1, + STATE(1526), 1, sym_text_interpolation, - ACTIONS(2394), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PIPE, - [47394] = 6, + ACTIONS(3058), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [50182] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(772), 1, anon_sym_COMMA, - STATE(1400), 1, - aux_sym_property_declaration_repeat2, - STATE(1408), 1, + ACTIONS(3060), 1, + anon_sym_RPAREN, + STATE(1527), 1, sym_text_interpolation, - ACTIONS(2821), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47414] = 5, + STATE(1673), 1, + aux_sym__list_destructing_repeat1, + [50201] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1174), 1, - aux_sym_else_clause_token1, - STATE(1409), 1, + STATE(1528), 1, sym_text_interpolation, - ACTIONS(1172), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [47431] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2823), 1, + ACTIONS(3062), 3, anon_sym_COMMA, - ACTIONS(2825), 1, + anon_sym_EQ, anon_sym_RPAREN, - STATE(1410), 1, - sym_text_interpolation, - STATE(1516), 1, - aux_sym_arguments_repeat1, - [47450] = 6, + [50216] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2827), 1, + ACTIONS(772), 1, anon_sym_COMMA, - ACTIONS(2829), 1, - anon_sym_RBRACE, - STATE(1411), 1, + ACTIONS(3064), 1, + anon_sym_RPAREN, + STATE(1529), 1, sym_text_interpolation, - STATE(1426), 1, - aux_sym_match_block_repeat1, - [47469] = 5, + STATE(1673), 1, + aux_sym__list_destructing_repeat1, + [50235] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1170), 1, + ACTIONS(1283), 1, aux_sym_else_clause_token1, - STATE(1412), 1, + STATE(1530), 1, sym_text_interpolation, - ACTIONS(1168), 2, + ACTIONS(1281), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [47486] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2831), 1, - anon_sym_AMP, - STATE(1413), 1, - sym_text_interpolation, - STATE(1433), 1, - sym_formal_parameters, - [47505] = 5, + [50252] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1206), 1, + ACTIONS(1287), 1, aux_sym_else_clause_token1, - STATE(1414), 1, + STATE(1531), 1, sym_text_interpolation, - ACTIONS(1204), 2, + ACTIONS(1285), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [47522] = 6, + [50269] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(3018), 1, anon_sym_COMMA, - ACTIONS(2833), 1, + ACTIONS(3066), 1, anon_sym_RPAREN, - STATE(1415), 1, - sym_text_interpolation, - STATE(1516), 1, + STATE(1501), 1, aux_sym_arguments_repeat1, - [47541] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_DOLLAR, - STATE(1325), 1, - sym_variable_name, - STATE(1416), 1, + STATE(1532), 1, sym_text_interpolation, - STATE(1493), 1, - sym_static_variable_declaration, - [47560] = 6, + [50288] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2835), 1, - anon_sym_EQ_GT, - STATE(1417), 1, + ACTIONS(3070), 1, + anon_sym_EQ, + STATE(1533), 1, sym_text_interpolation, - STATE(1808), 1, - sym__return_type, - [47579] = 4, + ACTIONS(3068), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50305] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1418), 1, - sym_text_interpolation, - ACTIONS(2837), 3, + ACTIONS(3072), 1, anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(3075), 1, anon_sym_RPAREN, - [47594] = 4, + STATE(1534), 2, + sym_text_interpolation, + aux_sym_formal_parameters_repeat1, + [50322] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1419), 1, + ACTIONS(1295), 1, + aux_sym_else_clause_token1, + STATE(1535), 1, sym_text_interpolation, - ACTIONS(2839), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [47609] = 5, + ACTIONS(1293), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50339] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_DOLLAR, - STATE(1420), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, + anon_sym_AMP, + STATE(1254), 1, + sym_formal_parameters, + STATE(1536), 1, sym_text_interpolation, - STATE(1505), 2, - sym_dynamic_variable_name, - sym_variable_name, - [47626] = 5, + [50358] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_DOLLAR, - STATE(1421), 1, + ACTIONS(714), 1, + anon_sym_RBRACK, + ACTIONS(3079), 1, + anon_sym_COMMA, + STATE(1537), 1, sym_text_interpolation, - STATE(1327), 2, - sym_dynamic_variable_name, - sym_variable_name, - [47643] = 5, + STATE(1640), 1, + aux_sym_array_creation_expression_repeat1, + [50377] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(994), 1, + ACTIONS(1295), 1, aux_sym_else_clause_token1, - STATE(1422), 1, + STATE(1538), 1, sym_text_interpolation, - ACTIONS(992), 2, + ACTIONS(1293), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [47660] = 4, + [50394] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1423), 1, - sym_text_interpolation, - ACTIONS(2841), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(2971), 1, + anon_sym_RPAREN, + ACTIONS(3024), 1, anon_sym_COMMA, - [47675] = 5, + STATE(1539), 1, + sym_text_interpolation, + STATE(1545), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [50413] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(990), 1, + ACTIONS(1319), 1, aux_sym_else_clause_token1, - STATE(1424), 1, + STATE(1540), 1, sym_text_interpolation, - ACTIONS(988), 2, + ACTIONS(1317), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [47692] = 6, + [50430] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(2843), 1, - anon_sym_DOT_DOT_DOT, - STATE(1425), 1, + ACTIONS(3081), 1, + anon_sym_COMMA, + ACTIONS(3084), 1, + anon_sym_RBRACE, + STATE(1541), 2, sym_text_interpolation, - STATE(1540), 1, - sym_variable_name, - [47711] = 6, + aux_sym_namespace_use_group_repeat1, + [50447] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(713), 1, - anon_sym_RBRACE, - ACTIONS(2845), 1, + ACTIONS(714), 1, + anon_sym_RPAREN, + ACTIONS(3086), 1, anon_sym_COMMA, - STATE(1426), 1, + STATE(1490), 1, + aux_sym_array_creation_expression_repeat1, + STATE(1542), 1, sym_text_interpolation, - STATE(1472), 1, - aux_sym_match_block_repeat1, - [47730] = 6, + [50466] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2847), 1, + ACTIONS(3088), 1, anon_sym_COMMA, - ACTIONS(2849), 1, - anon_sym_RPAREN, - STATE(1427), 1, - sym_text_interpolation, + ACTIONS(3090), 1, + anon_sym_RBRACE, STATE(1543), 1, - aux_sym_formal_parameters_repeat1, - [47749] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1428), 1, sym_text_interpolation, - ACTIONS(2851), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [47764] = 5, + STATE(1556), 1, + aux_sym_namespace_use_group_repeat1, + [50485] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2855), 1, + ACTIONS(3094), 1, anon_sym_EQ, - STATE(1429), 1, + STATE(1544), 1, sym_text_interpolation, - ACTIONS(2853), 2, + ACTIONS(3092), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47781] = 6, + [50502] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2548), 1, - anon_sym_LBRACE, - STATE(1430), 1, + ACTIONS(2955), 1, + anon_sym_RPAREN, + ACTIONS(3096), 1, + anon_sym_COMMA, + STATE(1545), 1, sym_text_interpolation, - STATE(1872), 1, - sym__return_type, - [47800] = 4, + STATE(1548), 1, + aux_sym_anonymous_function_use_clause_repeat1, + [50521] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1431), 1, - sym_text_interpolation, - ACTIONS(2857), 3, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(1542), 1, anon_sym_DOLLAR, - [47815] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1432), 1, + STATE(1323), 1, + sym_variable_name, + STATE(1480), 1, + sym_property_element, + STATE(1546), 1, sym_text_interpolation, - ACTIONS(2859), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [47830] = 6, + [50540] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, + ACTIONS(2489), 1, anon_sym_COLON, - ACTIONS(2861), 1, + ACTIONS(3098), 1, anon_sym_EQ_GT, - STATE(1433), 1, + STATE(1547), 1, sym_text_interpolation, - STATE(1886), 1, + STATE(1918), 1, sym__return_type, - [47849] = 6, + [50559] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(723), 1, - anon_sym_RPAREN, - ACTIONS(2863), 1, + ACTIONS(3100), 1, anon_sym_COMMA, - STATE(1434), 1, + ACTIONS(3103), 1, + anon_sym_RPAREN, + STATE(1548), 2, sym_text_interpolation, - STATE(1556), 1, - aux_sym_array_creation_expression_repeat1, - [47868] = 5, + aux_sym_anonymous_function_use_clause_repeat1, + [50576] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1086), 1, - aux_sym_else_clause_token1, - STATE(1435), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(3105), 1, + anon_sym_EQ_GT, + STATE(1549), 1, sym_text_interpolation, - ACTIONS(1084), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [47885] = 5, + STATE(1949), 1, + sym__return_type, + [50595] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1094), 1, - aux_sym_else_clause_token1, - STATE(1436), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(3107), 1, + anon_sym_AMP, + STATE(1271), 1, + sym_formal_parameters, + STATE(1550), 1, sym_text_interpolation, - ACTIONS(1092), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [47902] = 4, + [50614] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1437), 1, + ACTIONS(3109), 1, + anon_sym_COMMA, + ACTIONS(3112), 1, + anon_sym_RPAREN, + STATE(1551), 2, sym_text_interpolation, - ACTIONS(2458), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACE, - [47917] = 6, + aux_sym_array_creation_expression_repeat1, + [50631] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2865), 1, - anon_sym_EQ_GT, - STATE(1438), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(3114), 1, + anon_sym_AMP, + STATE(1552), 1, sym_text_interpolation, - STATE(1820), 1, - sym__return_type, - [47936] = 5, + STATE(1574), 1, + sym_formal_parameters, + [50650] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1198), 1, + ACTIONS(1323), 1, aux_sym_else_clause_token1, - STATE(1439), 1, + STATE(1553), 1, sym_text_interpolation, - ACTIONS(1196), 2, + ACTIONS(1321), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [47953] = 4, + [50667] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1440), 1, + ACTIONS(1127), 1, + aux_sym_else_clause_token1, + STATE(1554), 1, sym_text_interpolation, - ACTIONS(2806), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [47968] = 5, + ACTIONS(1125), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50684] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1202), 1, + ACTIONS(1147), 1, aux_sym_else_clause_token1, - STATE(1441), 1, + STATE(1555), 1, sym_text_interpolation, - ACTIONS(1200), 2, + ACTIONS(1145), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [47985] = 4, + [50701] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1442), 1, - sym_text_interpolation, - ACTIONS(2867), 3, + ACTIONS(3088), 1, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [48000] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2869), 1, - anon_sym_EQ_GT, - STATE(1443), 1, + ACTIONS(3116), 1, + anon_sym_RBRACE, + STATE(1541), 1, + aux_sym_namespace_use_group_repeat1, + STATE(1556), 1, sym_text_interpolation, - STATE(1822), 1, - sym__return_type, - [48019] = 5, + [50720] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1226), 1, + ACTIONS(1015), 1, aux_sym_else_clause_token1, - STATE(1444), 1, + STATE(1557), 1, sym_text_interpolation, - ACTIONS(1224), 2, + ACTIONS(1013), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48036] = 6, + [50737] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(785), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - ACTIONS(1382), 1, + ACTIONS(3120), 1, anon_sym_RPAREN, - STATE(1445), 1, + STATE(1502), 1, + aux_sym_formal_parameters_repeat1, + STATE(1558), 1, sym_text_interpolation, - STATE(1589), 1, - aux_sym__list_destructing_repeat1, - [48055] = 6, + [50756] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2871), 1, - anon_sym_AMP, - STATE(1446), 1, + ACTIONS(1315), 1, + aux_sym_else_clause_token1, + STATE(1559), 1, sym_text_interpolation, - STATE(1514), 1, - sym_formal_parameters, - [48074] = 6, + ACTIONS(1313), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50773] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2791), 1, - anon_sym_RPAREN, - ACTIONS(2873), 1, - anon_sym_COMMA, - STATE(1447), 1, + STATE(1560), 1, sym_text_interpolation, - STATE(1612), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [48093] = 6, + ACTIONS(3122), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [50788] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2666), 1, - anon_sym_COMMA, - ACTIONS(2875), 1, - anon_sym_RBRACK, - STATE(1448), 1, + ACTIONS(1263), 1, + aux_sym_else_clause_token1, + STATE(1561), 1, sym_text_interpolation, - STATE(1602), 1, - aux_sym__array_destructing_repeat1, - [48112] = 6, + ACTIONS(1261), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50805] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(683), 1, - anon_sym_RBRACK, - ACTIONS(2877), 1, + ACTIONS(2837), 1, anon_sym_COMMA, - STATE(1449), 1, + ACTIONS(3124), 1, + anon_sym_LBRACE, + STATE(1483), 1, + aux_sym_base_clause_repeat1, + STATE(1562), 1, sym_text_interpolation, - STATE(1454), 1, - aux_sym_array_creation_expression_repeat1, - [48131] = 5, + [50824] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2879), 1, - anon_sym_COMMA, - ACTIONS(2882), 1, - anon_sym_RBRACE, - STATE(1450), 2, + ACTIONS(1219), 1, + aux_sym_else_clause_token1, + STATE(1563), 1, sym_text_interpolation, - aux_sym_namespace_use_group_repeat1, - [48148] = 6, + ACTIONS(1217), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50841] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(717), 1, + ACTIONS(726), 1, anon_sym_RPAREN, - ACTIONS(2884), 1, + ACTIONS(3126), 1, anon_sym_COMMA, - STATE(1451), 1, + STATE(1564), 1, sym_text_interpolation, - STATE(1533), 1, + STATE(1652), 1, aux_sym_array_creation_expression_repeat1, - [48167] = 6, + [50860] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2666), 1, - anon_sym_COMMA, - ACTIONS(2886), 1, - anon_sym_RBRACK, - STATE(1452), 1, + STATE(1565), 1, sym_text_interpolation, - STATE(1602), 1, - aux_sym__array_destructing_repeat1, - [48186] = 6, + ACTIONS(2912), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [50875] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1898), 1, - anon_sym_COMMA, - ACTIONS(2888), 1, - anon_sym_EQ_GT, - STATE(1453), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(3128), 1, + anon_sym_AMP, + STATE(1566), 1, sym_text_interpolation, - STATE(1471), 1, - aux_sym_match_condition_list_repeat1, - [48205] = 6, + STATE(1583), 1, + sym_formal_parameters, + [50894] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(723), 1, - anon_sym_RBRACK, - ACTIONS(2890), 1, - anon_sym_COMMA, - STATE(1454), 1, + ACTIONS(1223), 1, + aux_sym_else_clause_token1, + STATE(1567), 1, sym_text_interpolation, - STATE(1610), 1, - aux_sym_array_creation_expression_repeat1, - [48224] = 5, + ACTIONS(1221), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [50911] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1010), 1, + ACTIONS(1203), 1, aux_sym_else_clause_token1, - STATE(1455), 1, + STATE(1568), 1, sym_text_interpolation, - ACTIONS(1008), 2, + ACTIONS(1201), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48241] = 6, + [50928] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(2642), 1, - anon_sym_AMP, - STATE(1456), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(3130), 1, + anon_sym_EQ_GT, + STATE(1569), 1, sym_text_interpolation, - STATE(1750), 1, - sym_variable_name, - [48260] = 5, + STATE(1950), 1, + sym__return_type, + [50947] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1162), 1, + ACTIONS(1203), 1, aux_sym_else_clause_token1, - STATE(1457), 1, + STATE(1570), 1, sym_text_interpolation, - ACTIONS(1160), 2, + ACTIONS(1201), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48277] = 5, + [50964] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1154), 1, - aux_sym_else_clause_token1, - STATE(1458), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(3132), 1, + anon_sym_EQ_GT, + STATE(1571), 1, sym_text_interpolation, - ACTIONS(1152), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [48294] = 4, + STATE(2007), 1, + sym__return_type, + [50983] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1459), 1, + STATE(1572), 1, sym_text_interpolation, - ACTIONS(2892), 3, + ACTIONS(2905), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACE, - [48309] = 6, + anon_sym_COMMA, + [50998] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2894), 1, - anon_sym_AMP, - STATE(1438), 1, - sym_formal_parameters, - STATE(1460), 1, + ACTIONS(3134), 1, + anon_sym_COMMA, + ACTIONS(3137), 1, + anon_sym_RPAREN, + STATE(1573), 2, sym_text_interpolation, - [48328] = 5, + aux_sym_arguments_repeat1, + [51015] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1142), 1, - aux_sym_else_clause_token1, - STATE(1461), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(3139), 1, + anon_sym_EQ_GT, + STATE(1574), 1, sym_text_interpolation, - ACTIONS(1140), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [48345] = 5, + STATE(1951), 1, + sym__return_type, + [51034] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1178), 1, + ACTIONS(1227), 1, aux_sym_else_clause_token1, - STATE(1462), 1, + STATE(1575), 1, sym_text_interpolation, - ACTIONS(1176), 2, + ACTIONS(1225), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48362] = 6, + [51051] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(785), 1, + ACTIONS(702), 1, + anon_sym_RBRACK, + ACTIONS(3141), 1, anon_sym_COMMA, - ACTIONS(2896), 1, - anon_sym_RPAREN, - STATE(1463), 1, + STATE(1537), 1, + aux_sym_array_creation_expression_repeat1, + STATE(1576), 1, sym_text_interpolation, - STATE(1589), 1, - aux_sym__list_destructing_repeat1, - [48381] = 6, + [51070] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2823), 1, - anon_sym_COMMA, - ACTIONS(2898), 1, - anon_sym_RPAREN, - STATE(1464), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(3143), 1, + anon_sym_AMP, + STATE(1549), 1, + sym_formal_parameters, + STATE(1577), 1, sym_text_interpolation, - STATE(1613), 1, - aux_sym_arguments_repeat1, - [48400] = 4, + [51089] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1465), 1, + ACTIONS(1175), 1, + aux_sym_else_clause_token1, + STATE(1578), 1, sym_text_interpolation, - ACTIONS(2900), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [48415] = 6, + ACTIONS(1173), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51106] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(785), 1, - anon_sym_COMMA, - ACTIONS(2902), 1, - anon_sym_RPAREN, - STATE(1466), 1, + ACTIONS(1303), 1, + aux_sym_else_clause_token1, + STATE(1579), 1, sym_text_interpolation, - STATE(1589), 1, - aux_sym__list_destructing_repeat1, - [48434] = 5, + ACTIONS(1301), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51123] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1210), 1, + ACTIONS(1299), 1, aux_sym_else_clause_token1, - STATE(1467), 1, + STATE(1580), 1, sym_text_interpolation, - ACTIONS(1208), 2, + ACTIONS(1297), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48451] = 4, + [51140] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1468), 1, + STATE(1581), 1, sym_text_interpolation, - ACTIONS(2904), 3, + ACTIONS(3145), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [48466] = 5, + [51155] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1090), 1, + ACTIONS(1175), 1, aux_sym_else_clause_token1, - STATE(1469), 1, + STATE(1582), 1, sym_text_interpolation, - ACTIONS(1088), 2, + ACTIONS(1173), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48483] = 5, + [51172] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1090), 1, - aux_sym_else_clause_token1, - STATE(1470), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(3147), 1, + anon_sym_EQ_GT, + STATE(1583), 1, sym_text_interpolation, - ACTIONS(1088), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [48500] = 5, + STATE(1959), 1, + sym__return_type, + [51191] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1976), 1, - anon_sym_EQ_GT, - ACTIONS(2906), 1, - anon_sym_COMMA, - STATE(1471), 2, + STATE(1584), 1, sym_text_interpolation, - aux_sym_match_condition_list_repeat1, - [48517] = 5, + ACTIONS(3149), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + [51206] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2909), 1, - anon_sym_COMMA, - ACTIONS(2912), 1, - anon_sym_RBRACE, - STATE(1472), 2, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(2594), 1, + anon_sym_LBRACE, + STATE(1585), 1, sym_text_interpolation, - aux_sym_match_block_repeat1, - [48534] = 6, + STATE(1925), 1, + sym__return_type, + [51225] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2914), 1, - anon_sym_AMP, - STATE(1473), 1, + ACTIONS(1167), 1, + aux_sym_else_clause_token1, + STATE(1586), 1, sym_text_interpolation, - STATE(1498), 1, - sym_formal_parameters, - [48553] = 6, + ACTIONS(1165), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51242] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2823), 1, - anon_sym_COMMA, - ACTIONS(2916), 1, - anon_sym_RPAREN, - STATE(1474), 1, + ACTIONS(1095), 1, + aux_sym_else_clause_token1, + STATE(1587), 1, sym_text_interpolation, - STATE(1480), 1, - aux_sym_arguments_repeat1, - [48572] = 5, + ACTIONS(1093), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51259] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1138), 1, + ACTIONS(1107), 1, aux_sym_else_clause_token1, - STATE(1475), 1, + STATE(1588), 1, sym_text_interpolation, - ACTIONS(1136), 2, + ACTIONS(1105), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48589] = 5, + [51276] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2920), 1, - aux_sym_else_clause_token1, - STATE(1476), 1, + ACTIONS(3018), 1, + anon_sym_COMMA, + ACTIONS(3151), 1, + anon_sym_RPAREN, + STATE(1589), 1, sym_text_interpolation, - ACTIONS(2918), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [48606] = 5, + STATE(1596), 1, + aux_sym_arguments_repeat1, + [51295] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(3153), 1, + anon_sym_LBRACE, + ACTIONS(3155), 1, + anon_sym_COLON, + STATE(1590), 1, + sym_text_interpolation, + STATE(1627), 1, + sym_switch_block, + [51314] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1026), 1, + ACTIONS(1199), 1, aux_sym_else_clause_token1, - STATE(1477), 1, + STATE(1591), 1, sym_text_interpolation, - ACTIONS(1024), 2, + ACTIONS(1197), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48623] = 5, + [51331] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1058), 1, + ACTIONS(1187), 1, aux_sym_else_clause_token1, - STATE(1478), 1, + STATE(1592), 1, sym_text_interpolation, - ACTIONS(1056), 2, + ACTIONS(1185), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48640] = 6, + [51348] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1892), 1, - anon_sym_RPAREN, - ACTIONS(2922), 1, - anon_sym_COMMA, - STATE(1479), 1, + ACTIONS(3159), 1, + anon_sym_EQ, + STATE(1593), 1, sym_text_interpolation, - STATE(1608), 1, - aux_sym_formal_parameters_repeat1, - [48659] = 6, + ACTIONS(3157), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51365] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2823), 1, - anon_sym_COMMA, - ACTIONS(2924), 1, + ACTIONS(2389), 1, anon_sym_RPAREN, - STATE(1480), 1, + ACTIONS(3161), 1, + anon_sym_COMMA, + STATE(1594), 2, sym_text_interpolation, - STATE(1516), 1, - aux_sym_arguments_repeat1, - [48678] = 5, + aux_sym_unset_statement_repeat1, + [51382] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1110), 1, + ACTIONS(1143), 1, aux_sym_else_clause_token1, - STATE(1481), 1, + STATE(1595), 1, sym_text_interpolation, - ACTIONS(1108), 2, + ACTIONS(1141), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48695] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(2926), 1, - anon_sym_AMP, - STATE(1482), 1, - sym_text_interpolation, - STATE(1507), 1, - sym_formal_parameters, - [48714] = 5, + [51399] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1074), 1, - aux_sym_else_clause_token1, - STATE(1483), 1, + ACTIONS(3018), 1, + anon_sym_COMMA, + ACTIONS(3164), 1, + anon_sym_RPAREN, + STATE(1573), 1, + aux_sym_arguments_repeat1, + STATE(1596), 1, sym_text_interpolation, - ACTIONS(1072), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [48731] = 6, + [51418] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2928), 1, - anon_sym_EQ_GT, - STATE(1484), 1, + STATE(1597), 1, sym_text_interpolation, - STATE(1840), 1, - sym__return_type, - [48750] = 4, + ACTIONS(3166), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [51433] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1485), 1, + STATE(1598), 1, sym_text_interpolation, - ACTIONS(2438), 3, - anon_sym_COMMA, + ACTIONS(3168), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACE, - aux_sym_class_interface_clause_token1, - [48765] = 4, + [51448] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1486), 1, + STATE(1599), 1, sym_text_interpolation, - ACTIONS(2930), 3, + ACTIONS(3170), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COMMA, - [48780] = 6, + anon_sym_LBRACE, + [51463] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2932), 1, - anon_sym_LBRACE, - ACTIONS(2934), 1, - anon_sym_COLON, - STATE(486), 1, - sym_switch_block, - STATE(1487), 1, + ACTIONS(1243), 1, + aux_sym_else_clause_token1, + STATE(1600), 1, sym_text_interpolation, - [48799] = 5, + ACTIONS(1241), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51480] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1038), 1, + ACTIONS(1027), 1, aux_sym_else_clause_token1, - STATE(1488), 1, + STATE(1601), 1, sym_text_interpolation, - ACTIONS(1036), 2, + ACTIONS(1025), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48816] = 6, + [51497] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_DOLLAR, - STATE(1296), 1, - sym_variable_name, - STATE(1440), 1, - sym_property_element, - STATE(1489), 1, + ACTIONS(1043), 1, + aux_sym_else_clause_token1, + STATE(1602), 1, sym_text_interpolation, - [48835] = 5, + ACTIONS(1041), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51514] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1246), 1, + ACTIONS(1059), 1, aux_sym_else_clause_token1, - STATE(1490), 1, + STATE(1603), 1, sym_text_interpolation, - ACTIONS(1244), 2, + ACTIONS(1057), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48852] = 6, + [51531] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2770), 1, - anon_sym_RPAREN, - ACTIONS(2936), 1, + ACTIONS(2829), 1, anon_sym_COMMA, - STATE(1491), 1, + ACTIONS(3172), 1, + anon_sym_RBRACK, + STATE(1604), 1, sym_text_interpolation, - STATE(1612), 1, - aux_sym_anonymous_function_use_clause_repeat1, - [48871] = 5, + STATE(1658), 1, + aux_sym__array_destructing_repeat1, + [51550] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1030), 1, + ACTIONS(1067), 1, aux_sym_else_clause_token1, - STATE(1492), 1, + STATE(1605), 1, sym_text_interpolation, - ACTIONS(1028), 2, + ACTIONS(1065), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48888] = 4, + [51567] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1493), 1, + STATE(1606), 1, sym_text_interpolation, - ACTIONS(2765), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3174), 3, anon_sym_COMMA, - [48903] = 5, + anon_sym_EQ, + anon_sym_RPAREN, + [51582] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1166), 1, + ACTIONS(1071), 1, aux_sym_else_clause_token1, - STATE(1494), 1, + STATE(1607), 1, sym_text_interpolation, - ACTIONS(1164), 2, + ACTIONS(1069), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48920] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2770), 1, - anon_sym_RPAREN, - ACTIONS(2936), 1, - anon_sym_COMMA, - STATE(1447), 1, - aux_sym_anonymous_function_use_clause_repeat1, - STATE(1495), 1, - sym_text_interpolation, - [48939] = 5, + [51599] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1234), 1, + ACTIONS(1055), 1, aux_sym_else_clause_token1, - STATE(1496), 1, + STATE(1608), 1, sym_text_interpolation, - ACTIONS(1232), 2, + ACTIONS(1053), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48956] = 5, + [51616] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1230), 1, + ACTIONS(1047), 1, aux_sym_else_clause_token1, - STATE(1497), 1, + STATE(1609), 1, sym_text_interpolation, - ACTIONS(1228), 2, + ACTIONS(1045), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [48973] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2938), 1, - anon_sym_EQ_GT, - STATE(1498), 1, - sym_text_interpolation, - STATE(1841), 1, - sym__return_type, - [48992] = 5, + [51633] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1218), 1, + ACTIONS(1023), 1, aux_sym_else_clause_token1, - STATE(1499), 1, + STATE(1610), 1, sym_text_interpolation, - ACTIONS(1216), 2, + ACTIONS(1021), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49009] = 5, + [51650] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1242), 1, - aux_sym_else_clause_token1, - STATE(1500), 1, + STATE(1611), 1, sym_text_interpolation, - ACTIONS(1240), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [49026] = 5, + ACTIONS(3176), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [51665] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1182), 1, + ACTIONS(1067), 1, aux_sym_else_clause_token1, - STATE(1501), 1, + STATE(1612), 1, sym_text_interpolation, - ACTIONS(1180), 2, + ACTIONS(1065), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49043] = 6, + [51682] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2823), 1, - anon_sym_COMMA, - ACTIONS(2940), 1, + ACTIONS(1827), 1, anon_sym_RPAREN, - STATE(1415), 1, - aux_sym_arguments_repeat1, - STATE(1502), 1, - sym_text_interpolation, - [49062] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(705), 1, - anon_sym_RBRACK, - ACTIONS(2942), 1, + ACTIONS(3178), 1, anon_sym_COMMA, - STATE(1503), 1, + STATE(1534), 1, + aux_sym_formal_parameters_repeat1, + STATE(1613), 1, sym_text_interpolation, - STATE(1610), 1, - aux_sym_array_creation_expression_repeat1, - [49081] = 6, + [51701] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2944), 1, - anon_sym_COMMA, - ACTIONS(2946), 1, - anon_sym_RBRACE, - STATE(1450), 1, - aux_sym_namespace_use_group_repeat1, - STATE(1504), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(3180), 1, + anon_sym_DOT_DOT_DOT, + STATE(1533), 1, + sym_variable_name, + STATE(1614), 1, sym_text_interpolation, - [49100] = 4, + [51720] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1505), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(3182), 1, + anon_sym_EQ_GT, + STATE(1615), 1, sym_text_interpolation, - ACTIONS(2752), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [49115] = 5, + STATE(2015), 1, + sym__return_type, + [51739] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2948), 1, - sym_name, - STATE(1506), 1, + ACTIONS(2829), 1, + anon_sym_COMMA, + ACTIONS(3184), 1, + anon_sym_RBRACK, + STATE(1616), 1, sym_text_interpolation, - ACTIONS(2950), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49132] = 6, + STATE(1658), 1, + aux_sym__array_destructing_repeat1, + [51758] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2952), 1, - anon_sym_EQ_GT, - STATE(1507), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(2878), 1, + anon_sym_AMP, + STATE(1617), 1, sym_text_interpolation, - STATE(1843), 1, - sym__return_type, - [49151] = 5, + STATE(1867), 1, + sym_variable_name, + [51777] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1070), 1, - aux_sym_else_clause_token1, - STATE(1508), 1, + ACTIONS(3188), 1, + anon_sym_EQ, + STATE(1618), 1, sym_text_interpolation, - ACTIONS(1068), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [49168] = 6, + ACTIONS(3186), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51794] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2823), 1, - anon_sym_COMMA, - ACTIONS(2954), 1, - anon_sym_RPAREN, - STATE(1410), 1, - aux_sym_arguments_repeat1, - STATE(1509), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(3190), 1, + anon_sym_DOT_DOT_DOT, + STATE(1525), 1, + sym_variable_name, + STATE(1619), 1, sym_text_interpolation, - [49187] = 5, + [51813] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1082), 1, - aux_sym_else_clause_token1, - STATE(1510), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(2728), 1, + anon_sym_LBRACE, + STATE(1620), 1, sym_text_interpolation, - ACTIONS(1080), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [49204] = 6, + STATE(1981), 1, + sym__return_type, + [51832] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(2956), 1, + ACTIONS(3192), 1, anon_sym_AMP, - STATE(1189), 1, + STATE(1229), 1, sym_formal_parameters, - STATE(1511), 1, + STATE(1621), 1, sym_text_interpolation, - [49223] = 6, + [51851] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(705), 1, - anon_sym_RPAREN, - ACTIONS(2958), 1, - anon_sym_COMMA, - STATE(1451), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1512), 1, + ACTIONS(2489), 1, + anon_sym_COLON, + ACTIONS(3194), 1, + anon_sym_EQ_GT, + STATE(1622), 1, sym_text_interpolation, - [49242] = 5, + STATE(1991), 1, + sym__return_type, + [51870] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1150), 1, - aux_sym_else_clause_token1, - STATE(1513), 1, + ACTIONS(3198), 1, + anon_sym_EQ, + STATE(1623), 1, sym_text_interpolation, - ACTIONS(1148), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [49259] = 6, + ACTIONS(3196), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51887] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2960), 1, - anon_sym_EQ_GT, - STATE(1514), 1, + ACTIONS(1011), 1, + aux_sym_else_clause_token1, + STATE(1624), 1, sym_text_interpolation, - STATE(1818), 1, - sym__return_type, - [49278] = 5, + ACTIONS(1009), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51904] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1146), 1, - aux_sym_else_clause_token1, - STATE(1515), 1, + ACTIONS(3202), 1, + anon_sym_EQ, + STATE(1625), 1, sym_text_interpolation, - ACTIONS(1144), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [49295] = 5, + ACTIONS(3200), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51921] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(3018), 1, anon_sym_COMMA, - ACTIONS(2965), 1, + ACTIONS(3204), 1, anon_sym_RPAREN, - STATE(1516), 2, + STATE(1626), 1, sym_text_interpolation, + STATE(1631), 1, aux_sym_arguments_repeat1, - [49312] = 4, + [51940] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1517), 1, + ACTIONS(1051), 1, + aux_sym_else_clause_token1, + STATE(1627), 1, sym_text_interpolation, - ACTIONS(2743), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [49327] = 5, + ACTIONS(1049), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51957] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1211), 1, aux_sym_else_clause_token1, - STATE(1518), 1, + STATE(1628), 1, sym_text_interpolation, - ACTIONS(1128), 2, + ACTIONS(1209), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49344] = 6, + [51974] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2967), 1, - anon_sym_EQ_GT, - STATE(1519), 1, + ACTIONS(1091), 1, + aux_sym_else_clause_token1, + STATE(1629), 1, sym_text_interpolation, - STATE(1810), 1, - sym__return_type, - [49363] = 4, + ACTIONS(1089), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [51991] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1520), 1, + ACTIONS(1131), 1, + aux_sym_else_clause_token1, + STATE(1630), 1, sym_text_interpolation, - ACTIONS(2969), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COMMA, - [49378] = 6, + ACTIONS(1129), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52008] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2666), 1, + ACTIONS(3018), 1, anon_sym_COMMA, - ACTIONS(2971), 1, - anon_sym_RBRACK, - STATE(1521), 1, + ACTIONS(3206), 1, + anon_sym_RPAREN, + STATE(1573), 1, + aux_sym_arguments_repeat1, + STATE(1631), 1, sym_text_interpolation, - STATE(1602), 1, - aux_sym__array_destructing_repeat1, - [49397] = 5, + [52027] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(1151), 1, aux_sym_else_clause_token1, - STATE(1522), 1, + STATE(1632), 1, sym_text_interpolation, - ACTIONS(1128), 2, + ACTIONS(1149), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49414] = 5, + [52044] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1098), 1, + ACTIONS(1195), 1, aux_sym_else_clause_token1, - STATE(1523), 1, + STATE(1633), 1, sym_text_interpolation, - ACTIONS(1096), 2, + ACTIONS(1193), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49431] = 6, + [52061] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2666), 1, + ACTIONS(772), 1, anon_sym_COMMA, - ACTIONS(2973), 1, - anon_sym_RBRACK, - STATE(1524), 1, + ACTIONS(1451), 1, + anon_sym_RPAREN, + STATE(1634), 1, sym_text_interpolation, - STATE(1602), 1, - aux_sym__array_destructing_repeat1, - [49450] = 6, + STATE(1673), 1, + aux_sym__list_destructing_repeat1, + [52080] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2975), 1, - anon_sym_EQ_GT, - STATE(1525), 1, + ACTIONS(3018), 1, + anon_sym_COMMA, + ACTIONS(3208), 1, + anon_sym_RPAREN, + STATE(1573), 1, + aux_sym_arguments_repeat1, + STATE(1635), 1, sym_text_interpolation, - STATE(1842), 1, - sym__return_type, - [49469] = 4, + [52099] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1526), 1, + ACTIONS(1215), 1, + aux_sym_else_clause_token1, + STATE(1636), 1, sym_text_interpolation, - ACTIONS(2977), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [49484] = 6, + ACTIONS(1213), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52116] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2823), 1, - anon_sym_COMMA, - ACTIONS(2979), 1, - anon_sym_RPAREN, - STATE(1527), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(3210), 1, + anon_sym_AMP, + STATE(1511), 1, + sym_variable_name, + STATE(1637), 1, sym_text_interpolation, - STATE(1528), 1, - aux_sym_arguments_repeat1, - [49503] = 6, + [52135] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(3212), 1, anon_sym_COMMA, - ACTIONS(2981), 1, - anon_sym_RPAREN, - STATE(1516), 1, - aux_sym_arguments_repeat1, - STATE(1528), 1, + ACTIONS(3215), 1, + anon_sym_RBRACK, + STATE(1638), 2, sym_text_interpolation, - [49522] = 4, + aux_sym_attribute_list_repeat1, + [52152] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1529), 1, + ACTIONS(3217), 1, + anon_sym_LBRACE, + ACTIONS(3219), 1, + anon_sym_COLON, + STATE(435), 1, + sym_switch_block, + STATE(1639), 1, sym_text_interpolation, - ACTIONS(2983), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [49537] = 6, + [52171] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(785), 1, + ACTIONS(3112), 1, + anon_sym_RBRACK, + ACTIONS(3221), 1, anon_sym_COMMA, - ACTIONS(2985), 1, - anon_sym_RPAREN, - STATE(1463), 1, - aux_sym__list_destructing_repeat1, - STATE(1530), 1, + STATE(1640), 2, sym_text_interpolation, - [49556] = 5, + aux_sym_array_creation_expression_repeat1, + [52188] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1126), 1, + ACTIONS(1311), 1, aux_sym_else_clause_token1, - STATE(1531), 1, + STATE(1641), 1, sym_text_interpolation, - ACTIONS(1124), 2, + ACTIONS(1309), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49573] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(2476), 1, - anon_sym_LBRACE, - STATE(1532), 1, - sym_text_interpolation, - STATE(1942), 1, - sym__return_type, - [49592] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_COMMA, - ACTIONS(2990), 1, - anon_sym_RPAREN, - STATE(1533), 2, - sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [49609] = 5, + [52205] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1122), 1, + ACTIONS(1307), 1, aux_sym_else_clause_token1, - STATE(1534), 1, + STATE(1642), 1, sym_text_interpolation, - ACTIONS(1120), 2, + ACTIONS(1305), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49626] = 5, + [52222] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2260), 1, - anon_sym_RPAREN, - ACTIONS(2992), 1, - anon_sym_COMMA, - STATE(1535), 2, + STATE(1643), 1, sym_text_interpolation, - aux_sym_unset_statement_repeat1, - [49643] = 6, + ACTIONS(2921), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [52237] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(3018), 1, anon_sym_COMMA, - ACTIONS(2995), 1, + ACTIONS(3224), 1, anon_sym_RPAREN, - STATE(1536), 1, + STATE(1644), 1, sym_text_interpolation, - STATE(1537), 1, + STATE(1645), 1, aux_sym_arguments_repeat1, - [49662] = 6, + [52256] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2823), 1, + ACTIONS(3018), 1, anon_sym_COMMA, - ACTIONS(2997), 1, + ACTIONS(3226), 1, anon_sym_RPAREN, - STATE(1516), 1, + STATE(1573), 1, aux_sym_arguments_repeat1, - STATE(1537), 1, + STATE(1645), 1, sym_text_interpolation, - [49681] = 6, + [52275] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(719), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, - anon_sym_COMMA, - STATE(1472), 1, - aux_sym_match_block_repeat1, - STATE(1538), 1, + ACTIONS(1275), 1, + aux_sym_else_clause_token1, + STATE(1646), 1, sym_text_interpolation, - [49700] = 5, + ACTIONS(1273), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52292] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + STATE(1647), 1, + sym_text_interpolation, + ACTIONS(2716), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACE, + [52307] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(974), 1, + ACTIONS(1011), 1, aux_sym_else_clause_token1, - STATE(1539), 1, + STATE(1648), 1, sym_text_interpolation, - ACTIONS(972), 2, + ACTIONS(1009), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49717] = 5, + [52324] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3003), 1, - anon_sym_EQ, - STATE(1540), 1, + STATE(1649), 1, sym_text_interpolation, - ACTIONS(3001), 2, + ACTIONS(3112), 3, anon_sym_COMMA, anon_sym_RPAREN, - [49734] = 5, + anon_sym_RBRACK, + [52339] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(974), 1, - aux_sym_else_clause_token1, - STATE(1541), 1, + STATE(1650), 1, sym_text_interpolation, - ACTIONS(972), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [49751] = 5, + ACTIONS(3228), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52354] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1106), 1, + ACTIONS(1079), 1, aux_sym_else_clause_token1, - STATE(1542), 1, + STATE(1651), 1, sym_text_interpolation, - ACTIONS(1104), 2, + ACTIONS(1077), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49768] = 6, + [52371] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1894), 1, + ACTIONS(722), 1, anon_sym_RPAREN, - ACTIONS(3005), 1, + ACTIONS(3230), 1, anon_sym_COMMA, - STATE(1543), 1, + STATE(1551), 1, + aux_sym_array_creation_expression_repeat1, + STATE(1652), 1, sym_text_interpolation, - STATE(1608), 1, - aux_sym_formal_parameters_repeat1, - [49787] = 6, + [52390] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(3007), 1, - anon_sym_DOT_DOT_DOT, - STATE(1544), 1, + ACTIONS(3018), 1, + anon_sym_COMMA, + ACTIONS(3232), 1, + anon_sym_RPAREN, + STATE(1653), 1, sym_text_interpolation, - STATE(1603), 1, - sym_variable_name, - [49806] = 5, + STATE(1654), 1, + aux_sym_arguments_repeat1, + [52409] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3011), 1, - anon_sym_EQ, - STATE(1545), 1, - sym_text_interpolation, - ACTIONS(3009), 2, + ACTIONS(3018), 1, anon_sym_COMMA, + ACTIONS(3234), 1, anon_sym_RPAREN, - [49823] = 5, + STATE(1573), 1, + aux_sym_arguments_repeat1, + STATE(1654), 1, + sym_text_interpolation, + [52428] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(970), 1, + ACTIONS(1083), 1, aux_sym_else_clause_token1, - STATE(1546), 1, + STATE(1655), 1, sym_text_interpolation, - ACTIONS(968), 2, + ACTIONS(1081), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49840] = 6, + [52445] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(3013), 1, - anon_sym_AMP, - STATE(1547), 1, + ACTIONS(1239), 1, + aux_sym_else_clause_token1, + STATE(1656), 1, sym_text_interpolation, - STATE(1595), 1, - sym_variable_name, - [49859] = 4, + ACTIONS(1237), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52462] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1548), 1, + ACTIONS(1231), 1, + aux_sym_else_clause_token1, + STATE(1657), 1, sym_text_interpolation, - ACTIONS(2726), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1229), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [52479] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(1462), 1, + anon_sym_RBRACK, + ACTIONS(3236), 1, anon_sym_COMMA, - [49874] = 5, + STATE(1658), 2, + sym_text_interpolation, + aux_sym__array_destructing_repeat1, + [52496] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1190), 1, + ACTIONS(1207), 1, aux_sym_else_clause_token1, - STATE(1549), 1, + STATE(1659), 1, sym_text_interpolation, - ACTIONS(1188), 2, + ACTIONS(1205), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49891] = 5, + [52513] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1186), 1, + ACTIONS(1191), 1, aux_sym_else_clause_token1, - STATE(1550), 1, + STATE(1660), 1, sym_text_interpolation, - ACTIONS(1184), 2, + ACTIONS(1189), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49908] = 5, + [52530] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1194), 1, + ACTIONS(1179), 1, aux_sym_else_clause_token1, - STATE(1551), 1, + STATE(1661), 1, sym_text_interpolation, - ACTIONS(1192), 2, + ACTIONS(1177), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49925] = 5, + [52547] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_DOLLAR, - STATE(1552), 1, + STATE(1662), 1, sym_text_interpolation, - STATE(1328), 2, - sym_dynamic_variable_name, - sym_variable_name, - [49942] = 6, + ACTIONS(3239), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52562] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3015), 1, - anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_RPAREN, - STATE(1479), 1, - aux_sym_formal_parameters_repeat1, - STATE(1553), 1, + STATE(1663), 1, sym_text_interpolation, - [49961] = 5, + ACTIONS(2851), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [52577] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1087), 1, aux_sym_else_clause_token1, - STATE(1554), 1, + STATE(1664), 1, sym_text_interpolation, - ACTIONS(1052), 2, + ACTIONS(1085), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [49978] = 6, + [52594] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2682), 1, + ACTIONS(772), 1, anon_sym_COMMA, - ACTIONS(3019), 1, - anon_sym_LBRACE, - STATE(1555), 1, + ACTIONS(3241), 1, + anon_sym_RPAREN, + STATE(1529), 1, + aux_sym__list_destructing_repeat1, + STATE(1665), 1, sym_text_interpolation, - STATE(1574), 1, - aux_sym_base_clause_repeat1, - [49997] = 6, + [52613] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(703), 1, - anon_sym_RPAREN, - ACTIONS(3021), 1, - anon_sym_COMMA, - STATE(1533), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1556), 1, + ACTIONS(3243), 1, + sym_name, + STATE(1666), 1, sym_text_interpolation, - [50016] = 6, + ACTIONS(3245), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52630] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2200), 1, - anon_sym_COMMA, - ACTIONS(3023), 1, - anon_sym_RPAREN, - STATE(1535), 1, - aux_sym_unset_statement_repeat1, - STATE(1557), 1, + ACTIONS(2831), 1, + anon_sym_EQ, + STATE(1667), 1, sym_text_interpolation, - [50035] = 6, + ACTIONS(3247), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52647] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(3025), 1, - anon_sym_AMP, - STATE(1558), 1, + ACTIONS(3249), 1, + anon_sym_COMMA, + ACTIONS(3251), 1, + anon_sym_RPAREN, + STATE(1613), 1, + aux_sym_formal_parameters_repeat1, + STATE(1668), 1, sym_text_interpolation, - STATE(1614), 1, - sym_formal_parameters, - [50054] = 6, + [52666] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1800), 1, + ACTIONS(281), 1, anon_sym_DOLLAR, - ACTIONS(3027), 1, - anon_sym_RPAREN, - STATE(1559), 1, + ACTIONS(592), 1, + sym_comment, + STATE(1669), 1, sym_text_interpolation, - STATE(1839), 1, + STATE(1394), 2, + sym_dynamic_variable_name, sym_variable_name, - [50073] = 5, + [52683] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1134), 1, + ACTIONS(1087), 1, aux_sym_else_clause_token1, - STATE(1560), 1, + STATE(1670), 1, sym_text_interpolation, - ACTIONS(1132), 2, + ACTIONS(1085), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50090] = 5, + [52700] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1250), 1, - aux_sym_else_clause_token1, - STATE(1561), 1, + ACTIONS(2837), 1, + anon_sym_COMMA, + ACTIONS(3253), 1, + anon_sym_LBRACE, + STATE(1562), 1, + aux_sym_base_clause_repeat1, + STATE(1671), 1, sym_text_interpolation, - ACTIONS(1248), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50107] = 5, + [52719] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1034), 1, - aux_sym_else_clause_token1, - STATE(1562), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(3255), 1, + anon_sym_RPAREN, + STATE(1672), 1, sym_text_interpolation, - ACTIONS(1032), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50124] = 5, + STATE(1930), 1, + sym_variable_name, + [52738] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3031), 1, - aux_sym_else_clause_token1, - STATE(1563), 1, + ACTIONS(1464), 1, + anon_sym_RPAREN, + ACTIONS(3257), 1, + anon_sym_COMMA, + STATE(1673), 2, sym_text_interpolation, - ACTIONS(3029), 2, - aux_sym_if_statement_token2, - aux_sym_else_if_clause_token1, - [50141] = 5, + aux_sym__list_destructing_repeat1, + [52755] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1042), 1, + ACTIONS(1135), 1, aux_sym_else_clause_token1, - STATE(1564), 1, + STATE(1674), 1, sym_text_interpolation, - ACTIONS(1040), 2, + ACTIONS(1133), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50158] = 6, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3035), 1, - anon_sym_RBRACE, - STATE(1538), 1, - aux_sym_match_block_repeat1, - STATE(1565), 1, - sym_text_interpolation, - [50177] = 6, + [52772] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2562), 1, - anon_sym_BSLASH, - ACTIONS(3037), 1, - sym_name, - STATE(1566), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(3260), 1, + anon_sym_AMP, + STATE(1622), 1, + sym_formal_parameters, + STATE(1675), 1, sym_text_interpolation, - STATE(1866), 1, - sym_namespace_name, - [50196] = 5, + [52791] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1042), 1, + ACTIONS(1123), 1, aux_sym_else_clause_token1, - STATE(1567), 1, + STATE(1676), 1, sym_text_interpolation, - ACTIONS(1040), 2, + ACTIONS(1121), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50213] = 6, + [52808] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(3039), 1, - anon_sym_AMP, - STATE(1194), 1, - sym_formal_parameters, - STATE(1568), 1, + ACTIONS(772), 1, + anon_sym_COMMA, + ACTIONS(3262), 1, + anon_sym_RPAREN, + STATE(1673), 1, + aux_sym__list_destructing_repeat1, + STATE(1677), 1, sym_text_interpolation, - [50232] = 5, + [52827] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1034), 1, + ACTIONS(1103), 1, aux_sym_else_clause_token1, - STATE(1569), 1, + STATE(1678), 1, sym_text_interpolation, - ACTIONS(1032), 2, + ACTIONS(1101), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50249] = 5, + [52844] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(688), 1, + anon_sym_RBRACK, + ACTIONS(3264), 1, + anon_sym_COMMA, + STATE(1679), 1, + sym_text_interpolation, + STATE(1708), 1, + aux_sym_array_creation_expression_repeat1, + [52863] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(1062), 1, + ACTIONS(1139), 1, aux_sym_else_clause_token1, - STATE(1570), 1, + STATE(1680), 1, sym_text_interpolation, - ACTIONS(1060), 2, + ACTIONS(1137), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50266] = 6, + [52880] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(785), 1, + ACTIONS(3266), 1, anon_sym_COMMA, - ACTIONS(3041), 1, - anon_sym_RPAREN, - STATE(1571), 1, + ACTIONS(3268), 1, + anon_sym_RBRACK, + STATE(1681), 1, sym_text_interpolation, - STATE(1589), 1, - aux_sym__list_destructing_repeat1, - [50285] = 6, + STATE(1703), 1, + aux_sym_attribute_list_repeat1, + [52899] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(3043), 1, - anon_sym_AMP, - STATE(1519), 1, - sym_formal_parameters, - STATE(1572), 1, + STATE(1682), 1, sym_text_interpolation, - [50304] = 6, + ACTIONS(3270), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52914] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(689), 1, - anon_sym_RBRACK, - ACTIONS(3045), 1, + ACTIONS(772), 1, anon_sym_COMMA, - STATE(1503), 1, - aux_sym_array_creation_expression_repeat1, - STATE(1573), 1, + ACTIONS(3272), 1, + anon_sym_RPAREN, + STATE(1673), 1, + aux_sym__list_destructing_repeat1, + STATE(1683), 1, sym_text_interpolation, - [50323] = 6, + [52933] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_COMMA, - ACTIONS(3047), 1, - anon_sym_LBRACE, - STATE(1368), 1, - aux_sym_base_clause_repeat1, - STATE(1574), 1, + STATE(1684), 1, sym_text_interpolation, - [50342] = 5, + ACTIONS(3274), 3, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + [52948] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1238), 1, + ACTIONS(1159), 1, aux_sym_else_clause_token1, - STATE(1575), 1, + STATE(1685), 1, sym_text_interpolation, - ACTIONS(1236), 2, + ACTIONS(1157), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50359] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2668), 1, - anon_sym_EQ, - STATE(1576), 1, - sym_text_interpolation, - ACTIONS(3049), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50376] = 6, + [52965] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2439), 1, anon_sym_LPAREN, - ACTIONS(3051), 1, + ACTIONS(3276), 1, anon_sym_AMP, - STATE(1525), 1, + STATE(1246), 1, sym_formal_parameters, - STATE(1577), 1, - sym_text_interpolation, - [50395] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1102), 1, - aux_sym_else_clause_token1, - STATE(1578), 1, + STATE(1686), 1, sym_text_interpolation, - ACTIONS(1100), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50412] = 5, + [52984] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1018), 1, + ACTIONS(1099), 1, aux_sym_else_clause_token1, - STATE(1579), 1, + STATE(1687), 1, sym_text_interpolation, - ACTIONS(1016), 2, + ACTIONS(1097), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50429] = 6, + [53001] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1469), 1, - anon_sym_DOLLAR, - STATE(1296), 1, - sym_variable_name, - STATE(1367), 1, - sym_property_element, - STATE(1580), 1, - sym_text_interpolation, - [50448] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1581), 1, + ACTIONS(2831), 1, + anon_sym_EQ, + STATE(1688), 1, sym_text_interpolation, - ACTIONS(3053), 3, + ACTIONS(3278), 2, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, - [50463] = 5, + [53018] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1078), 1, + ACTIONS(1163), 1, aux_sym_else_clause_token1, - STATE(1582), 1, + STATE(1689), 1, sym_text_interpolation, - ACTIONS(1076), 2, + ACTIONS(1161), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50480] = 5, + [53035] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1158), 1, + ACTIONS(1171), 1, aux_sym_else_clause_token1, - STATE(1583), 1, + STATE(1690), 1, sym_text_interpolation, - ACTIONS(1156), 2, + ACTIONS(1169), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50497] = 6, + [53052] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(3055), 1, - anon_sym_AMP, - STATE(1199), 1, - sym_formal_parameters, - STATE(1584), 1, + ACTIONS(1977), 1, + anon_sym_COMMA, + ACTIONS(3280), 1, + anon_sym_EQ_GT, + STATE(1524), 1, + aux_sym_match_condition_list_repeat1, + STATE(1691), 1, sym_text_interpolation, - [50516] = 5, + [53071] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1222), 1, - aux_sym_else_clause_token1, - STATE(1585), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(3282), 1, + anon_sym_DOT_DOT_DOT, + STATE(1593), 1, + sym_variable_name, + STATE(1692), 1, sym_text_interpolation, - ACTIONS(1220), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50533] = 4, + [53090] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1586), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(3284), 1, + anon_sym_AMP, + STATE(1571), 1, + sym_formal_parameters, + STATE(1693), 1, sym_text_interpolation, - ACTIONS(3057), 3, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - [50548] = 5, + [53109] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1118), 1, - aux_sym_else_clause_token1, - STATE(1587), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + ACTIONS(3286), 1, + anon_sym_AMP, + STATE(1547), 1, + sym_formal_parameters, + STATE(1694), 1, sym_text_interpolation, - ACTIONS(1116), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50565] = 6, + [53128] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(785), 1, + ACTIONS(2331), 1, anon_sym_COMMA, - ACTIONS(3059), 1, + ACTIONS(3288), 1, anon_sym_RPAREN, - STATE(1588), 1, + STATE(1594), 1, + aux_sym_unset_statement_repeat1, + STATE(1695), 1, sym_text_interpolation, - STATE(1589), 1, - aux_sym__list_destructing_repeat1, - [50584] = 5, + [53147] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1395), 1, - anon_sym_RPAREN, - ACTIONS(3061), 1, - anon_sym_COMMA, - STATE(1589), 2, + STATE(1696), 1, sym_text_interpolation, - aux_sym__list_destructing_repeat1, - [50601] = 5, + ACTIONS(3290), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COMMA, + [53162] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(978), 1, + ACTIONS(1271), 1, aux_sym_else_clause_token1, - STATE(1590), 1, + STATE(1697), 1, sym_text_interpolation, - ACTIONS(976), 2, + ACTIONS(1269), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50618] = 5, + [53179] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(978), 1, + ACTIONS(1279), 1, aux_sym_else_clause_token1, - STATE(1591), 1, + STATE(1698), 1, sym_text_interpolation, - ACTIONS(976), 2, + ACTIONS(1277), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50635] = 5, + [53196] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(982), 1, + ACTIONS(1251), 1, aux_sym_else_clause_token1, - STATE(1592), 1, + STATE(1699), 1, sym_text_interpolation, - ACTIONS(980), 2, + ACTIONS(1249), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50652] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1593), 1, - sym_text_interpolation, - ACTIONS(2093), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - sym_name, - [50667] = 5, + [53213] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2668), 1, - anon_sym_EQ, - STATE(1594), 1, + ACTIONS(1247), 1, + aux_sym_else_clause_token1, + STATE(1700), 1, sym_text_interpolation, - ACTIONS(3064), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [50684] = 6, + ACTIONS(1245), 2, + aux_sym_while_statement_token1, + aux_sym_else_if_clause_token1, + [53230] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3066), 1, + ACTIONS(2331), 1, anon_sym_COMMA, - ACTIONS(3068), 1, + ACTIONS(3292), 1, anon_sym_RPAREN, - STATE(1491), 1, - aux_sym_anonymous_function_use_clause_repeat1, - STATE(1595), 1, + STATE(1594), 1, + aux_sym_unset_statement_repeat1, + STATE(1701), 1, sym_text_interpolation, - [50703] = 6, + [53249] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3070), 1, - anon_sym_LBRACE, - ACTIONS(3072), 1, - anon_sym_COLON, - STATE(1414), 1, - sym_switch_block, - STATE(1596), 1, + ACTIONS(2829), 1, + anon_sym_COMMA, + ACTIONS(3294), 1, + anon_sym_RBRACK, + STATE(1658), 1, + aux_sym__array_destructing_repeat1, + STATE(1702), 1, sym_text_interpolation, - [50722] = 5, + [53268] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(986), 1, - aux_sym_else_clause_token1, - STATE(1597), 1, + ACTIONS(3266), 1, + anon_sym_COMMA, + ACTIONS(3296), 1, + anon_sym_RBRACK, + STATE(1638), 1, + aux_sym_attribute_list_repeat1, + STATE(1703), 1, sym_text_interpolation, - ACTIONS(984), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50739] = 5, + [53287] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(986), 1, + ACTIONS(1063), 1, aux_sym_else_clause_token1, - STATE(1598), 1, + STATE(1704), 1, sym_text_interpolation, - ACTIONS(984), 2, + ACTIONS(1061), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50756] = 6, + [53304] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2200), 1, + ACTIONS(2829), 1, anon_sym_COMMA, - ACTIONS(3074), 1, - anon_sym_RPAREN, - STATE(1535), 1, - aux_sym_unset_statement_repeat1, - STATE(1599), 1, + ACTIONS(3298), 1, + anon_sym_RBRACK, + STATE(1658), 1, + aux_sym__array_destructing_repeat1, + STATE(1705), 1, sym_text_interpolation, - [50775] = 5, + [53323] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(998), 1, + ACTIONS(3302), 1, aux_sym_else_clause_token1, - STATE(1600), 1, + STATE(1706), 1, sym_text_interpolation, - ACTIONS(996), 2, - aux_sym_while_statement_token1, + ACTIONS(3300), 2, + aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [50792] = 5, + [53340] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(998), 1, - aux_sym_else_clause_token1, - STATE(1601), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + ACTIONS(3304), 1, + anon_sym_RPAREN, + STATE(1707), 1, sym_text_interpolation, - ACTIONS(996), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50809] = 5, + STATE(2035), 1, + sym_variable_name, + [53359] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1390), 1, + ACTIONS(726), 1, anon_sym_RBRACK, - ACTIONS(3076), 1, + ACTIONS(3306), 1, anon_sym_COMMA, - STATE(1602), 2, + STATE(1640), 1, + aux_sym_array_creation_expression_repeat1, + STATE(1708), 1, sym_text_interpolation, - aux_sym__array_destructing_repeat1, - [50826] = 5, + [53378] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(281), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, sym_comment, - ACTIONS(3081), 1, - anon_sym_EQ, - STATE(1603), 1, + STATE(1709), 1, sym_text_interpolation, - ACTIONS(3079), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50843] = 6, + STATE(1643), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53395] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - ACTIONS(3083), 1, - anon_sym_AMP, - STATE(1221), 1, - sym_formal_parameters, - STATE(1604), 1, + ACTIONS(720), 1, + anon_sym_RBRACE, + ACTIONS(3308), 1, + anon_sym_COMMA, + STATE(1521), 1, + aux_sym_match_block_repeat1, + STATE(1710), 1, sym_text_interpolation, - [50862] = 5, + [53414] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1006), 1, - aux_sym_else_clause_token1, - STATE(1605), 1, + ACTIONS(1542), 1, + anon_sym_DOLLAR, + STATE(1460), 1, + sym_variable_name, + STATE(1516), 1, + sym_static_variable_declaration, + STATE(1711), 1, sym_text_interpolation, - ACTIONS(1004), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50879] = 5, + [53433] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1014), 1, + ACTIONS(1291), 1, aux_sym_else_clause_token1, - STATE(1606), 1, + STATE(1712), 1, sym_text_interpolation, - ACTIONS(1012), 2, + ACTIONS(1289), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [50896] = 4, + [53450] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1607), 1, - sym_text_interpolation, - ACTIONS(2990), 3, + ACTIONS(3310), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [50911] = 5, + ACTIONS(3312), 1, + anon_sym_RBRACE, + STATE(1710), 1, + aux_sym_match_block_repeat1, + STATE(1713), 1, + sym_text_interpolation, + [53469] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3085), 1, + ACTIONS(3018), 1, anon_sym_COMMA, - ACTIONS(3088), 1, + ACTIONS(3314), 1, anon_sym_RPAREN, - STATE(1608), 2, + STATE(1635), 1, + aux_sym_arguments_repeat1, + STATE(1714), 1, sym_text_interpolation, - aux_sym_formal_parameters_repeat1, - [50928] = 5, + [53488] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(281), 1, + anon_sym_DOLLAR, + ACTIONS(592), 1, sym_comment, - ACTIONS(1022), 1, - aux_sym_else_clause_token1, - STATE(1609), 1, + STATE(1715), 1, sym_text_interpolation, - ACTIONS(1020), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [50945] = 5, + STATE(1458), 2, + sym_dynamic_variable_name, + sym_variable_name, + [53505] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2990), 1, - anon_sym_RBRACK, - ACTIONS(3090), 1, - anon_sym_COMMA, - STATE(1610), 2, + STATE(1716), 1, sym_text_interpolation, - aux_sym_array_creation_expression_repeat1, - [50962] = 6, + ACTIONS(2249), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + sym_name, + [53520] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(336), 1, + anon_sym_COLON, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - ACTIONS(3093), 1, - anon_sym_RPAREN, - STATE(1611), 1, + STATE(1717), 1, sym_text_interpolation, - STATE(1807), 1, - sym_variable_name, - [50981] = 5, + STATE(2072), 1, + sym_colon_block, + [53536] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - ACTIONS(3095), 1, - anon_sym_COMMA, - ACTIONS(3098), 1, - anon_sym_RPAREN, - STATE(1612), 2, + STATE(1322), 1, + sym_compound_statement, + STATE(1718), 1, sym_text_interpolation, - aux_sym_anonymous_function_use_clause_repeat1, - [50998] = 6, + [53552] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2823), 1, - anon_sym_COMMA, - ACTIONS(3100), 1, - anon_sym_RPAREN, - STATE(1516), 1, - aux_sym_arguments_repeat1, - STATE(1613), 1, + STATE(1719), 1, + sym_text_interpolation, + ACTIONS(3316), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53566] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1720), 1, sym_text_interpolation, - [51017] = 6, + ACTIONS(3318), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53580] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(414), 1, + ts_builtin_sym_end, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(3102), 1, - anon_sym_EQ_GT, - STATE(1614), 1, + ACTIONS(3320), 1, + sym_php_tag, + STATE(1721), 1, sym_text_interpolation, - STATE(1867), 1, - sym__return_type, - [51036] = 6, + [53596] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2370), 1, - anon_sym_COLON, - ACTIONS(3104), 1, - anon_sym_EQ_GT, - STATE(1615), 1, + STATE(1722), 1, sym_text_interpolation, - STATE(1857), 1, - sym__return_type, - [51055] = 5, + ACTIONS(3322), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53610] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1114), 1, - aux_sym_else_clause_token1, - STATE(1616), 1, + STATE(1723), 1, sym_text_interpolation, - ACTIONS(1112), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51072] = 5, + ACTIONS(3324), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53624] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1066), 1, - aux_sym_else_clause_token1, - STATE(1617), 1, + ACTIONS(3326), 1, + anon_sym_SEMI, + ACTIONS(3328), 1, + sym__automatic_semicolon, + STATE(1724), 1, sym_text_interpolation, - ACTIONS(1064), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51089] = 5, + [53640] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1022), 1, - aux_sym_else_clause_token1, - STATE(1618), 1, + ACTIONS(3330), 1, + anon_sym_LPAREN, + STATE(87), 1, + sym_parenthesized_expression, + STATE(1725), 1, sym_text_interpolation, - ACTIONS(1020), 2, - aux_sym_while_statement_token1, - aux_sym_else_if_clause_token1, - [51106] = 6, + [53656] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2944), 1, - anon_sym_COMMA, - ACTIONS(3106), 1, - anon_sym_RBRACE, - STATE(1504), 1, - aux_sym_namespace_use_group_repeat1, - STATE(1619), 1, + ACTIONS(1472), 1, + anon_sym_BSLASH, + STATE(1726), 1, sym_text_interpolation, - [51125] = 5, + STATE(1764), 1, + aux_sym_namespace_name_repeat1, + [53672] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - STATE(1300), 1, - sym_compound_statement, - STATE(1620), 1, + STATE(1727), 1, sym_text_interpolation, - [51141] = 5, + ACTIONS(3332), 2, + sym__eof, + sym_php_tag, + [53686] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2322), 1, - anon_sym_LBRACE, - STATE(721), 1, - sym_declaration_list, - STATE(1621), 1, + STATE(1728), 1, sym_text_interpolation, - [51157] = 5, + ACTIONS(3334), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53700] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3108), 1, - sym_name, - STATE(1354), 1, - sym_namespace_name, - STATE(1622), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + STATE(1615), 1, + sym_formal_parameters, + STATE(1729), 1, sym_text_interpolation, - [51173] = 4, + [53716] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1623), 1, + ACTIONS(2030), 1, + anon_sym_RPAREN, + ACTIONS(3336), 1, + anon_sym_EQ, + STATE(1730), 1, sym_text_interpolation, - ACTIONS(3110), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51187] = 4, + [53732] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1624), 1, + ACTIONS(3330), 1, + anon_sym_LPAREN, + STATE(67), 1, + sym_parenthesized_expression, + STATE(1731), 1, sym_text_interpolation, - ACTIONS(2969), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51201] = 5, + [53748] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(429), 1, - ts_builtin_sym_end, - ACTIONS(3112), 1, - sym_php_tag, - STATE(1625), 1, + ACTIONS(3338), 1, + anon_sym_LPAREN, + STATE(1732), 1, sym_text_interpolation, - [51217] = 5, + STATE(1849), 1, + sym_parenthesized_expression, + [53764] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2384), 1, + ACTIONS(3330), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym_parenthesized_expression, + STATE(1733), 1, + sym_text_interpolation, + [53780] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(354), 1, anon_sym_LBRACE, - STATE(920), 1, + ACTIONS(592), 1, + sym_comment, + STATE(1678), 1, sym_compound_statement, - STATE(1626), 1, + STATE(1734), 1, sym_text_interpolation, - [51233] = 5, + [53796] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1399), 1, - anon_sym_BSLASH, - STATE(1627), 1, + STATE(1735), 1, sym_text_interpolation, - STATE(1764), 1, - aux_sym_namespace_name_repeat1, - [51249] = 5, + ACTIONS(3340), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53810] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2384), 1, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(923), 1, - sym_compound_statement, - STATE(1628), 1, + STATE(924), 1, + sym_declaration_list, + STATE(1736), 1, sym_text_interpolation, - [51265] = 5, + [53826] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1920), 1, + ACTIONS(2022), 1, anon_sym_RPAREN, - ACTIONS(3114), 1, + ACTIONS(3336), 1, anon_sym_EQ, - STATE(1629), 1, - sym_text_interpolation, - [51281] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - STATE(1630), 1, + STATE(1737), 1, sym_text_interpolation, - ACTIONS(3116), 2, - sym__eof, - sym_php_tag, - [51295] = 5, + [53842] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3118), 1, + ACTIONS(3342), 1, anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, - STATE(1631), 1, + STATE(1336), 1, + sym_formal_parameters, + STATE(1738), 1, sym_text_interpolation, - [51311] = 5, + [53858] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2390), 1, + ACTIONS(2457), 1, anon_sym_LBRACE, - STATE(409), 1, + STATE(1642), 1, sym_declaration_list, - STATE(1632), 1, + STATE(1739), 1, sym_text_interpolation, - [51327] = 5, + [53874] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3118), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym_parenthesized_expression, - STATE(1633), 1, + STATE(1740), 1, sym_text_interpolation, - [51343] = 5, + ACTIONS(3344), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53888] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - STATE(1561), 1, - sym_compound_statement, - STATE(1634), 1, + STATE(1741), 1, sym_text_interpolation, - [51359] = 4, + ACTIONS(3346), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53902] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1635), 1, + ACTIONS(3348), 1, + anon_sym_LBRACE, + STATE(759), 1, + sym_match_block, + STATE(1742), 1, sym_text_interpolation, - ACTIONS(3120), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51373] = 5, + [53918] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3122), 1, + ACTIONS(2439), 1, anon_sym_LPAREN, - STATE(1267), 1, + STATE(1256), 1, sym_formal_parameters, - STATE(1636), 1, + STATE(1743), 1, sym_text_interpolation, - [51389] = 5, + [53934] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2322), 1, - anon_sym_LBRACE, - STATE(1488), 1, - sym_declaration_list, - STATE(1637), 1, + STATE(1744), 1, sym_text_interpolation, - [51405] = 4, + ACTIONS(2072), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53948] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1638), 1, + STATE(1745), 1, sym_text_interpolation, - ACTIONS(3088), 2, + ACTIONS(3137), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51419] = 5, + [53962] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - STATE(1639), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + STATE(1504), 1, + sym_formal_parameters, + STATE(1746), 1, sym_text_interpolation, - STATE(1716), 1, - sym_variable_name, - [51435] = 5, + [53978] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(351), 1, + ACTIONS(199), 1, anon_sym_LBRACE, - STATE(1235), 1, + ACTIONS(592), 1, + sym_comment, + STATE(428), 1, sym_compound_statement, - STATE(1640), 1, + STATE(1747), 1, sym_text_interpolation, - [51451] = 4, + [53994] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1641), 1, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(938), 1, + sym_declaration_list, + STATE(1748), 1, sym_text_interpolation, - ACTIONS(3124), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51465] = 5, + [54010] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - STATE(1495), 1, - sym_variable_name, - STATE(1642), 1, + STATE(1749), 1, sym_text_interpolation, - [51481] = 5, + ACTIONS(3350), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54024] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - STATE(1417), 1, - sym_formal_parameters, - STATE(1643), 1, + STATE(1750), 1, sym_text_interpolation, - [51497] = 5, + ACTIONS(3352), 2, + anon_sym_SEMI, + anon_sym_COLON, + [54038] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - ACTIONS(3118), 1, - anon_sym_LPAREN, - STATE(80), 1, - sym_parenthesized_expression, - STATE(1644), 1, + STATE(1610), 1, + sym_compound_statement, + STATE(1751), 1, sym_text_interpolation, - [51513] = 5, + [54054] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_LPAREN, - STATE(1645), 1, + STATE(1752), 1, sym_text_interpolation, - STATE(1761), 1, - sym_parenthesized_expression, - [51529] = 5, + ACTIONS(1981), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54068] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3118), 1, - anon_sym_LPAREN, - STATE(79), 1, - sym_parenthesized_expression, - STATE(1646), 1, + ACTIONS(2491), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_declaration_list, + STATE(1753), 1, sym_text_interpolation, - [51545] = 4, + [54084] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1647), 1, + STATE(1754), 1, sym_text_interpolation, - ACTIONS(2748), 2, + ACTIONS(2547), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51559] = 5, + [54098] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3128), 1, - anon_sym_LPAREN, - STATE(1648), 1, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(930), 1, + sym_declaration_list, + STATE(1755), 1, sym_text_interpolation, - STATE(1728), 1, - sym_parenthesized_expression, - [51575] = 5, + [54114] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2439), 1, anon_sym_LPAREN, - STATE(1214), 1, + STATE(1230), 1, sym_formal_parameters, - STATE(1649), 1, + STATE(1756), 1, sym_text_interpolation, - [51591] = 5, + [54130] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3128), 1, + ACTIONS(1443), 1, anon_sym_LPAREN, - STATE(1487), 1, - sym_parenthesized_expression, - STATE(1650), 1, + STATE(569), 1, + sym_arguments, + STATE(1757), 1, sym_text_interpolation, - [51607] = 5, + [54146] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2491), 1, anon_sym_LBRACE, - STATE(929), 1, + STATE(416), 1, sym_declaration_list, - STATE(1651), 1, + STATE(1758), 1, sym_text_interpolation, - [51623] = 4, + [54162] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1652), 1, + STATE(1759), 1, sym_text_interpolation, - ACTIONS(3130), 2, - sym__automatic_semicolon, + ACTIONS(1987), 2, anon_sym_SEMI, - [51637] = 4, + anon_sym_RPAREN, + [54176] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1653), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + STATE(640), 1, + sym_arguments, + STATE(1760), 1, sym_text_interpolation, - ACTIONS(2378), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51651] = 5, + [54192] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(3342), 1, anon_sym_LPAREN, - STATE(1525), 1, + STATE(1294), 1, sym_formal_parameters, - STATE(1654), 1, + STATE(1761), 1, sym_text_interpolation, - [51667] = 4, + [54208] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1655), 1, + ACTIONS(2491), 1, + anon_sym_LBRACE, + STATE(414), 1, + sym_declaration_list, + STATE(1762), 1, sym_text_interpolation, - ACTIONS(3132), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51681] = 4, + [54224] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1656), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + STATE(1763), 1, sym_text_interpolation, - ACTIONS(3134), 2, - anon_sym_SEMI, - anon_sym_COLON, - [51695] = 5, + STATE(1811), 1, + sym_variable_name, + [54240] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3128), 1, - anon_sym_LPAREN, - STATE(1596), 1, - sym_parenthesized_expression, - STATE(1657), 1, + ACTIONS(3354), 1, + anon_sym_BSLASH, + STATE(1357), 1, + aux_sym_namespace_name_repeat1, + STATE(1764), 1, sym_text_interpolation, - [51711] = 5, + [54256] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(198), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - STATE(498), 1, + STATE(904), 1, sym_compound_statement, - STATE(1658), 1, + STATE(1765), 1, sym_text_interpolation, - [51727] = 4, + [54272] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1659), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + STATE(1547), 1, + sym_formal_parameters, + STATE(1766), 1, sym_text_interpolation, - ACTIONS(2668), 2, - anon_sym_EQ, - anon_sym_RPAREN, - [51741] = 5, + [54288] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3128), 1, - anon_sym_LPAREN, - STATE(1660), 1, + STATE(1767), 1, sym_text_interpolation, - STATE(1670), 1, - sym_parenthesized_expression, - [51757] = 4, + ACTIONS(3357), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54302] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1661), 1, + STATE(1768), 1, sym_text_interpolation, - ACTIONS(3136), 2, + ACTIONS(3359), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51771] = 5, + [54316] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3118), 1, + ACTIONS(2491), 1, + anon_sym_LBRACE, + STATE(422), 1, + sym_declaration_list, + STATE(1769), 1, + sym_text_interpolation, + [54332] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(3361), 1, anon_sym_LPAREN, - STATE(70), 1, + STATE(1590), 1, sym_parenthesized_expression, - STATE(1662), 1, + STATE(1770), 1, sym_text_interpolation, - [51787] = 5, + [54348] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(333), 1, - anon_sym_COLON, - STATE(1663), 1, + STATE(1771), 1, sym_text_interpolation, - STATE(1865), 1, - sym_colon_block, - [51803] = 5, + ACTIONS(3363), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54362] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3128), 1, + ACTIONS(3361), 1, anon_sym_LPAREN, - STATE(1664), 1, + STATE(1742), 1, + sym_parenthesized_expression, + STATE(1772), 1, sym_text_interpolation, - STATE(1688), 1, + [54378] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(3330), 1, + anon_sym_LPAREN, + STATE(56), 1, sym_parenthesized_expression, - [51819] = 4, + STATE(1773), 1, + sym_text_interpolation, + [54394] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - STATE(1665), 1, + STATE(744), 1, + sym_compound_statement, + STATE(1774), 1, sym_text_interpolation, - ACTIONS(3138), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51833] = 5, + [54410] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - ACTIONS(3118), 1, - anon_sym_LPAREN, - STATE(82), 1, - sym_parenthesized_expression, - STATE(1666), 1, + STATE(1309), 1, + sym_compound_statement, + STATE(1775), 1, sym_text_interpolation, - [51849] = 4, + [54426] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - STATE(1667), 1, + STATE(1324), 1, + sym_compound_statement, + STATE(1776), 1, + sym_text_interpolation, + [54442] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1777), 1, sym_text_interpolation, - ACTIONS(1902), 2, + ACTIONS(3365), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - [51863] = 4, + [54456] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1668), 1, + STATE(1778), 1, + sym_text_interpolation, + ACTIONS(2936), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54470] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1779), 1, sym_text_interpolation, - ACTIONS(3140), 2, + ACTIONS(3367), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51877] = 4, + [54484] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1669), 1, + STATE(1780), 1, sym_text_interpolation, - ACTIONS(3142), 2, + ACTIONS(3369), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51891] = 5, + [54498] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3144), 1, + ACTIONS(2457), 1, anon_sym_LBRACE, - STATE(722), 1, - sym_match_block, - STATE(1670), 1, + STATE(1592), 1, + sym_declaration_list, + STATE(1781), 1, sym_text_interpolation, - [51907] = 4, + [54514] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1671), 1, + STATE(1782), 1, sym_text_interpolation, - ACTIONS(1908), 2, + ACTIONS(3371), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51921] = 4, + [54528] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1672), 1, + ACTIONS(2048), 1, + anon_sym_RPAREN, + ACTIONS(3336), 1, + anon_sym_EQ, + STATE(1783), 1, sym_text_interpolation, - ACTIONS(3146), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51935] = 4, + [54544] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1673), 1, + STATE(1784), 1, sym_text_interpolation, - ACTIONS(3148), 2, + ACTIONS(3373), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51949] = 4, + [54558] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1674), 1, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1291), 1, + sym_declaration_list, + STATE(1785), 1, sym_text_interpolation, - ACTIONS(3150), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51963] = 4, + [54574] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1675), 1, + STATE(1786), 1, sym_text_interpolation, - ACTIONS(3152), 2, + ACTIONS(3245), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51977] = 5, + [54588] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2390), 1, + STATE(1787), 1, + sym_text_interpolation, + ACTIONS(3375), 2, anon_sym_LBRACE, - STATE(410), 1, - sym_declaration_list, - STATE(1676), 1, + anon_sym_COLON, + [54602] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(3330), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym_parenthesized_expression, + STATE(1788), 1, sym_text_interpolation, - [51993] = 4, + [54618] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1677), 1, + STATE(1789), 1, sym_text_interpolation, - ACTIONS(3154), 2, + ACTIONS(3377), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52007] = 5, + [54632] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3122), 1, - anon_sym_LPAREN, - STATE(1248), 1, - sym_formal_parameters, - STATE(1678), 1, + STATE(1790), 1, sym_text_interpolation, - [52023] = 4, + ACTIONS(3379), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54646] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1679), 1, + ACTIONS(3330), 1, + anon_sym_LPAREN, + STATE(54), 1, + sym_parenthesized_expression, + STATE(1791), 1, sym_text_interpolation, - ACTIONS(3156), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52037] = 5, + [54662] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - STATE(745), 1, - sym_compound_statement, - STATE(1680), 1, + ACTIONS(3361), 1, + anon_sym_LPAREN, + STATE(1792), 1, sym_text_interpolation, - [52053] = 4, + STATE(1810), 1, + sym_parenthesized_expression, + [54678] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1681), 1, + STATE(1793), 1, sym_text_interpolation, - ACTIONS(3158), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52067] = 5, + ACTIONS(3381), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54692] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1916), 1, - anon_sym_RPAREN, - ACTIONS(3114), 1, - anon_sym_EQ, - STATE(1682), 1, + ACTIONS(3361), 1, + anon_sym_LPAREN, + STATE(1639), 1, + sym_parenthesized_expression, + STATE(1794), 1, sym_text_interpolation, - [52083] = 5, + [54708] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2384), 1, - anon_sym_LBRACE, - STATE(841), 1, - sym_compound_statement, - STATE(1683), 1, + ACTIONS(3361), 1, + anon_sym_LPAREN, + STATE(1795), 1, sym_text_interpolation, - [52099] = 4, + STATE(1850), 1, + sym_parenthesized_expression, + [54724] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1684), 1, - sym_text_interpolation, - ACTIONS(2859), 2, + ACTIONS(2487), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [52113] = 5, + STATE(941), 1, + sym_compound_statement, + STATE(1796), 1, + sym_text_interpolation, + [54740] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2439), 1, anon_sym_LPAREN, - STATE(1430), 1, + STATE(1254), 1, sym_formal_parameters, - STATE(1685), 1, + STATE(1797), 1, sym_text_interpolation, - [52129] = 5, + [54756] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2322), 1, - anon_sym_LBRACE, - STATE(1435), 1, - sym_declaration_list, - STATE(1686), 1, + STATE(1798), 1, sym_text_interpolation, - [52145] = 5, + ACTIONS(428), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54770] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_RPAREN, - ACTIONS(3114), 1, - anon_sym_EQ, - STATE(1687), 1, + STATE(1799), 1, sym_text_interpolation, - [52161] = 5, + ACTIONS(3168), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [54784] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(495), 1, - anon_sym_COLON, - STATE(1476), 1, - sym_colon_block, - STATE(1688), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + STATE(1800), 1, sym_text_interpolation, - [52177] = 5, + STATE(1882), 1, + sym_variable_name, + [54800] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - STATE(1641), 1, - sym_variable_name, - STATE(1689), 1, + ACTIONS(2491), 1, + anon_sym_LBRACE, + STATE(423), 1, + sym_declaration_list, + STATE(1801), 1, sym_text_interpolation, - [52193] = 5, + [54816] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2951), 1, anon_sym_LBRACE, - STATE(1241), 1, + STATE(476), 1, sym_declaration_list, - STATE(1690), 1, + STATE(1802), 1, sym_text_interpolation, - [52209] = 5, + [54832] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2741), 1, + ACTIONS(354), 1, anon_sym_LBRACE, - STATE(437), 1, - sym_declaration_list, - STATE(1691), 1, + ACTIONS(592), 1, + sym_comment, + STATE(1287), 1, + sym_compound_statement, + STATE(1803), 1, sym_text_interpolation, - [52225] = 4, + [54848] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1692), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + STATE(1804), 1, sym_text_interpolation, - ACTIONS(3160), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52239] = 5, + STATE(1915), 1, + sym_variable_name, + [54864] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3162), 1, - anon_sym_SEMI, - ACTIONS(3164), 1, - sym__automatic_semicolon, - STATE(1693), 1, + STATE(1805), 1, sym_text_interpolation, - [52255] = 4, + ACTIONS(3383), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54878] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1694), 1, + STATE(1806), 1, sym_text_interpolation, - ACTIONS(3166), 2, + ACTIONS(3385), 2, anon_sym_COMMA, anon_sym_RPAREN, - [52269] = 5, + [54892] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - STATE(1221), 1, - sym_formal_parameters, - STATE(1695), 1, + STATE(1807), 1, sym_text_interpolation, - [52285] = 5, + ACTIONS(3387), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [54906] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, + ACTIONS(1727), 1, anon_sym_DOLLAR, - STATE(1635), 1, - sym_variable_name, - STATE(1696), 1, + STATE(1808), 1, sym_text_interpolation, - [52301] = 5, + STATE(1904), 1, + sym_variable_name, + [54922] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(3330), 1, anon_sym_LPAREN, - STATE(1433), 1, - sym_formal_parameters, - STATE(1697), 1, + STATE(46), 1, + sym_parenthesized_expression, + STATE(1809), 1, sym_text_interpolation, - [52317] = 4, + [54938] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1698), 1, + ACTIONS(3389), 1, + anon_sym_LBRACE, + STATE(875), 1, + sym_match_block, + STATE(1810), 1, sym_text_interpolation, - ACTIONS(3168), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52331] = 5, + [54954] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - STATE(1240), 1, - sym_compound_statement, - STATE(1699), 1, + STATE(1811), 1, sym_text_interpolation, - [52347] = 5, + ACTIONS(3391), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [54968] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2487), 1, anon_sym_LBRACE, - STATE(882), 1, - sym_declaration_list, - STATE(1700), 1, + STATE(923), 1, + sym_compound_statement, + STATE(1812), 1, sym_text_interpolation, - [52363] = 5, + [54984] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2322), 1, + ACTIONS(2457), 1, anon_sym_LBRACE, - STATE(719), 1, + STATE(773), 1, sym_declaration_list, - STATE(1701), 1, + STATE(1813), 1, sym_text_interpolation, - [52379] = 4, + [55000] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1702), 1, + STATE(1814), 1, sym_text_interpolation, - ACTIONS(1922), 2, + ACTIONS(3145), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [52393] = 4, + anon_sym_RBRACE, + [55014] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1703), 1, - sym_text_interpolation, - ACTIONS(2965), 2, - anon_sym_COMMA, + ACTIONS(2132), 1, anon_sym_RPAREN, - [52407] = 5, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(1418), 1, - anon_sym_LPAREN, - STATE(626), 1, - sym_arguments, - STATE(1704), 1, + ACTIONS(3336), 1, + anon_sym_EQ, + STATE(1815), 1, sym_text_interpolation, - [52423] = 5, + [55030] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2390), 1, + ACTIONS(2491), 1, anon_sym_LBRACE, - STATE(411), 1, + STATE(421), 1, sym_declaration_list, - STATE(1705), 1, + STATE(1816), 1, sym_text_interpolation, - [52439] = 5, + [55046] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3170), 1, - anon_sym_LPAREN, - ACTIONS(3172), 1, - anon_sym_RPAREN, - STATE(1706), 1, + ACTIONS(3393), 1, + anon_sym_SEMI, + ACTIONS(3395), 1, + sym__automatic_semicolon, + STATE(1817), 1, sym_text_interpolation, - [52455] = 4, + [55062] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1707), 1, + ACTIONS(2487), 1, + anon_sym_LBRACE, + STATE(874), 1, + sym_compound_statement, + STATE(1818), 1, sym_text_interpolation, - ACTIONS(2950), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52469] = 5, + [55078] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1558), 1, anon_sym_LPAREN, - STATE(546), 1, + STATE(727), 1, sym_arguments, - STATE(1708), 1, + STATE(1819), 1, sym_text_interpolation, - [52485] = 5, + [55094] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2384), 1, + ACTIONS(354), 1, anon_sym_LBRACE, - STATE(876), 1, + ACTIONS(592), 1, + sym_comment, + STATE(766), 1, sym_compound_statement, - STATE(1709), 1, + STATE(1820), 1, sym_text_interpolation, - [52501] = 5, + [55110] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3118), 1, - anon_sym_LPAREN, - STATE(65), 1, - sym_parenthesized_expression, - STATE(1710), 1, + ACTIONS(2487), 1, + anon_sym_LBRACE, + STATE(935), 1, + sym_compound_statement, + STATE(1821), 1, sym_text_interpolation, - [52517] = 5, + [55126] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3118), 1, - anon_sym_LPAREN, - STATE(62), 1, - sym_parenthesized_expression, - STATE(1711), 1, + STATE(1822), 1, sym_text_interpolation, - [52533] = 4, + ACTIONS(3397), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55140] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1712), 1, + STATE(1823), 1, sym_text_interpolation, - ACTIONS(3174), 2, + ACTIONS(422), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52547] = 4, + [55154] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1713), 1, + STATE(1824), 1, sym_text_interpolation, - ACTIONS(3176), 2, + ACTIONS(3399), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52561] = 4, + [55168] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1714), 1, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(407), 1, + sym_compound_statement, + STATE(1825), 1, sym_text_interpolation, - ACTIONS(2757), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [52575] = 4, + [55184] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1715), 1, + ACTIONS(3403), 1, + sym_name, + STATE(1442), 1, + sym_namespace_name, + STATE(1826), 1, + sym_text_interpolation, + [55200] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1827), 1, sym_text_interpolation, - ACTIONS(3178), 2, + ACTIONS(2561), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52589] = 4, + [55214] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1716), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + STATE(1828), 1, sym_text_interpolation, - ACTIONS(3180), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [52603] = 4, + STATE(1895), 1, + sym_variable_name, + [55230] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1717), 1, + STATE(1829), 1, sym_text_interpolation, - ACTIONS(1902), 2, + ACTIONS(3405), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52617] = 4, + [55244] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1718), 1, + ACTIONS(3330), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym_parenthesized_expression, + STATE(1830), 1, + sym_text_interpolation, + [55260] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1831), 1, sym_text_interpolation, - ACTIONS(3182), 2, + ACTIONS(3407), 2, anon_sym_LBRACE, anon_sym_COLON, - [52631] = 4, + [55274] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1719), 1, + STATE(1832), 1, sym_text_interpolation, - ACTIONS(3184), 2, + ACTIONS(2917), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52645] = 4, + [55288] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1720), 1, + STATE(1833), 1, sym_text_interpolation, - ACTIONS(3186), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [52659] = 4, + ACTIONS(2985), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55302] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1721), 1, + STATE(1834), 1, sym_text_interpolation, - ACTIONS(3188), 2, - sym__automatic_semicolon, + ACTIONS(1981), 2, anon_sym_SEMI, - [52673] = 5, + anon_sym_RPAREN, + [55316] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_LPAREN, - STATE(707), 1, - sym_arguments, - STATE(1722), 1, + STATE(762), 1, + sym_compound_statement, + STATE(1835), 1, sym_text_interpolation, - [52689] = 4, + [55332] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1723), 1, + ACTIONS(2491), 1, + anon_sym_LBRACE, + STATE(413), 1, + sym_declaration_list, + STATE(1836), 1, sym_text_interpolation, - ACTIONS(3190), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52703] = 5, + [55348] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3192), 1, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(401), 1, - sym_compound_statement, - STATE(1724), 1, + STATE(1342), 1, + sym_declaration_list, + STATE(1837), 1, sym_text_interpolation, - [52719] = 5, + [55364] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2439), 1, anon_sym_LPAREN, - STATE(1498), 1, + STATE(1494), 1, sym_formal_parameters, - STATE(1725), 1, + STATE(1838), 1, sym_text_interpolation, - [52735] = 5, + [55380] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2384), 1, - anon_sym_LBRACE, - STATE(916), 1, - sym_compound_statement, - STATE(1726), 1, + STATE(1839), 1, sym_text_interpolation, - [52751] = 4, + ACTIONS(3409), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55394] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1727), 1, + ACTIONS(3330), 1, + anon_sym_LPAREN, + STATE(64), 1, + sym_parenthesized_expression, + STATE(1840), 1, sym_text_interpolation, - ACTIONS(1908), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [52765] = 5, + [55410] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3194), 1, + STATE(1841), 1, + sym_text_interpolation, + ACTIONS(2024), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55424] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(199), 1, anon_sym_LBRACE, - STATE(878), 1, - sym_match_block, - STATE(1728), 1, + ACTIONS(592), 1, + sym_comment, + STATE(451), 1, + sym_compound_statement, + STATE(1842), 1, sym_text_interpolation, - [52781] = 5, + [55440] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3196), 1, - anon_sym_SEMI, - ACTIONS(3198), 1, - sym__automatic_semicolon, - STATE(1729), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + STATE(1246), 1, + sym_formal_parameters, + STATE(1843), 1, sym_text_interpolation, - [52797] = 5, + [55456] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + STATE(1844), 1, + sym_text_interpolation, + ACTIONS(1987), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55470] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2439), 1, anon_sym_LPAREN, - STATE(1615), 1, + STATE(1585), 1, sym_formal_parameters, - STATE(1730), 1, + STATE(1845), 1, sym_text_interpolation, - [52813] = 5, + [55486] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - STATE(730), 1, - sym_compound_statement, - STATE(1731), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + STATE(1574), 1, + sym_formal_parameters, + STATE(1846), 1, sym_text_interpolation, - [52829] = 4, + [55502] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1732), 1, + STATE(1847), 1, sym_text_interpolation, - ACTIONS(2779), 2, + ACTIONS(3411), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52843] = 5, + [55516] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2439), 1, anon_sym_LPAREN, - STATE(1484), 1, + STATE(1498), 1, sym_formal_parameters, - STATE(1733), 1, + STATE(1848), 1, sym_text_interpolation, - [52859] = 4, + [55532] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1734), 1, + STATE(1849), 1, sym_text_interpolation, - ACTIONS(2912), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [52873] = 4, + ACTIONS(3413), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55546] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(506), 1, + anon_sym_COLON, + ACTIONS(592), 1, sym_comment, - STATE(1735), 1, + STATE(1513), 1, + sym_colon_block, + STATE(1850), 1, sym_text_interpolation, - ACTIONS(1954), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [52887] = 4, + [55562] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1736), 1, + STATE(1851), 1, sym_text_interpolation, - ACTIONS(3200), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [52901] = 4, + ACTIONS(3415), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55576] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1737), 1, + ACTIONS(3330), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym_parenthesized_expression, + STATE(1852), 1, sym_text_interpolation, - ACTIONS(425), 2, + [55592] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1853), 1, + sym_text_interpolation, + ACTIONS(3417), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52915] = 5, + [55606] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - STATE(734), 1, - sym_compound_statement, - STATE(1738), 1, + STATE(1854), 1, sym_text_interpolation, - [52931] = 5, + ACTIONS(3419), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55620] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2439), 1, anon_sym_LPAREN, - STATE(1443), 1, + STATE(1569), 1, sym_formal_parameters, - STATE(1739), 1, + STATE(1855), 1, sym_text_interpolation, - [52947] = 5, + [55636] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3118), 1, + ACTIONS(2487), 1, + anon_sym_LBRACE, + STATE(888), 1, + sym_compound_statement, + STATE(1856), 1, + sym_text_interpolation, + [55652] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(3421), 1, anon_sym_LPAREN, - STATE(69), 1, - sym_parenthesized_expression, - STATE(1740), 1, + ACTIONS(3423), 1, + anon_sym_RPAREN, + STATE(1857), 1, sym_text_interpolation, - [52963] = 5, + [55668] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2328), 1, - anon_sym_LBRACE, - STATE(1247), 1, - sym_declaration_list, - STATE(1741), 1, + STATE(1858), 1, sym_text_interpolation, - [52979] = 4, + ACTIONS(3425), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55682] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1742), 1, + STATE(1859), 1, sym_text_interpolation, - ACTIONS(3202), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [52993] = 5, + ACTIONS(3427), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55696] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1952), 1, - anon_sym_RPAREN, - ACTIONS(3114), 1, - anon_sym_EQ, - STATE(1743), 1, + STATE(1860), 1, sym_text_interpolation, - [53009] = 5, + ACTIONS(3429), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55710] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(2457), 1, + anon_sym_LBRACE, + STATE(756), 1, + sym_declaration_list, + STATE(1861), 1, + sym_text_interpolation, + [55726] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2439), 1, anon_sym_LPAREN, - STATE(1438), 1, + STATE(1571), 1, sym_formal_parameters, - STATE(1744), 1, + STATE(1862), 1, sym_text_interpolation, - [53025] = 4, + [55742] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1745), 1, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1361), 1, + sym_declaration_list, + STATE(1863), 1, sym_text_interpolation, - ACTIONS(2882), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [53039] = 4, + [55758] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1746), 1, + STATE(1864), 1, sym_text_interpolation, - ACTIONS(3204), 2, + ACTIONS(3431), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53053] = 4, + [55772] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1747), 1, + ACTIONS(2008), 1, + anon_sym_RPAREN, + ACTIONS(3336), 1, + anon_sym_EQ, + STATE(1865), 1, sym_text_interpolation, - ACTIONS(3206), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53067] = 4, + [55788] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1748), 1, + STATE(1866), 1, sym_text_interpolation, - ACTIONS(3208), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [53081] = 5, + ACTIONS(3433), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55802] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - STATE(1749), 1, + STATE(1867), 1, sym_text_interpolation, - STATE(1755), 1, - sym_variable_name, - [53097] = 4, + ACTIONS(3103), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [55816] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1750), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + STATE(1805), 1, + sym_variable_name, + STATE(1868), 1, sym_text_interpolation, - ACTIONS(3098), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53111] = 4, + [55832] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1751), 1, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1356), 1, + sym_declaration_list, + STATE(1869), 1, sym_text_interpolation, - ACTIONS(3210), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [53125] = 4, + [55848] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1752), 1, + STATE(1870), 1, sym_text_interpolation, - ACTIONS(3212), 2, + ACTIONS(3435), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53139] = 5, + [55862] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2951), 1, anon_sym_LBRACE, - STATE(912), 1, + STATE(512), 1, sym_declaration_list, - STATE(1753), 1, + STATE(1871), 1, sym_text_interpolation, - [53155] = 4, + [55878] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - STATE(1754), 1, + STATE(754), 1, + sym_compound_statement, + STATE(1872), 1, sym_text_interpolation, - ACTIONS(3214), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53169] = 4, + [55894] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1755), 1, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(410), 1, + sym_compound_statement, + STATE(1873), 1, sym_text_interpolation, - ACTIONS(3216), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [53183] = 4, + [55910] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - STATE(1756), 1, + STATE(750), 1, + sym_compound_statement, + STATE(1874), 1, sym_text_interpolation, - ACTIONS(3218), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53197] = 4, + [55926] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1757), 1, + STATE(1875), 1, sym_text_interpolation, - ACTIONS(3220), 2, + ACTIONS(504), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53211] = 4, + [55940] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1758), 1, + ACTIONS(2439), 1, + anon_sym_LPAREN, + STATE(1620), 1, + sym_formal_parameters, + STATE(1876), 1, sym_text_interpolation, - ACTIONS(3222), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53225] = 4, + [55956] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1759), 1, + STATE(1877), 1, sym_text_interpolation, - ACTIONS(3224), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53239] = 5, + ACTIONS(3437), 2, + anon_sym_LBRACE, + anon_sym_COLON, + [55970] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_LPAREN, - STATE(1668), 1, - sym_parenthesized_expression, - STATE(1760), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + STATE(1539), 1, + sym_variable_name, + STATE(1878), 1, sym_text_interpolation, - [53255] = 4, + [55986] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1761), 1, + STATE(1879), 1, sym_text_interpolation, - ACTIONS(3226), 2, + ACTIONS(3439), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53269] = 5, + [56000] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3192), 1, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(403), 1, + STATE(406), 1, sym_compound_statement, - STATE(1762), 1, + STATE(1880), 1, sym_text_interpolation, - [53285] = 5, + [56016] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3118), 1, - anon_sym_LPAREN, - STATE(86), 1, - sym_parenthesized_expression, - STATE(1763), 1, + STATE(1881), 1, sym_text_interpolation, - [53301] = 5, + ACTIONS(494), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56030] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3228), 1, - anon_sym_BSLASH, - STATE(1246), 1, - aux_sym_namespace_name_repeat1, - STATE(1764), 1, + STATE(1882), 1, sym_text_interpolation, - [53317] = 4, + ACTIONS(3441), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56044] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(354), 1, + anon_sym_LBRACE, + ACTIONS(592), 1, sym_comment, - STATE(1765), 1, + STATE(1308), 1, + sym_compound_statement, + STATE(1883), 1, sym_text_interpolation, - ACTIONS(3231), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53331] = 4, + [56060] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1766), 1, + STATE(1884), 1, sym_text_interpolation, - ACTIONS(3233), 2, + ACTIONS(3443), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53345] = 4, + [56074] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1767), 1, + STATE(1885), 1, sym_text_interpolation, - ACTIONS(2412), 2, + ACTIONS(3445), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53359] = 5, + [56088] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - STATE(1194), 1, - sym_formal_parameters, - STATE(1768), 1, + STATE(1886), 1, sym_text_interpolation, - [53375] = 5, + ACTIONS(3084), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56102] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2322), 1, - anon_sym_LBRACE, - STATE(751), 1, - sym_declaration_list, - STATE(1769), 1, + STATE(1887), 1, sym_text_interpolation, - [53391] = 4, + ACTIONS(3447), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56116] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1770), 1, + STATE(1888), 1, sym_text_interpolation, - ACTIONS(463), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53405] = 5, + ACTIONS(3215), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56130] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2390), 1, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(413), 1, + STATE(1313), 1, sym_declaration_list, - STATE(1771), 1, + STATE(1889), 1, sym_text_interpolation, - [53421] = 4, + [56146] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1772), 1, + STATE(1890), 1, sym_text_interpolation, - ACTIONS(3235), 2, + ACTIONS(3449), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53435] = 5, + [56160] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2741), 1, - anon_sym_LBRACE, - STATE(452), 1, - sym_declaration_list, - STATE(1773), 1, + ACTIONS(3451), 1, + anon_sym_SEMI, + ACTIONS(3453), 1, + sym__automatic_semicolon, + STATE(1891), 1, sym_text_interpolation, - [53451] = 4, + [56176] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1774), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + STATE(1806), 1, + sym_variable_name, + STATE(1892), 1, sym_text_interpolation, - ACTIONS(501), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53465] = 5, + [56192] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - STATE(1239), 1, - sym_compound_statement, - STATE(1775), 1, + ACTIONS(3338), 1, + anon_sym_LPAREN, + STATE(1722), 1, + sym_parenthesized_expression, + STATE(1893), 1, sym_text_interpolation, - [53481] = 4, + [56208] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1776), 1, + STATE(1894), 1, sym_text_interpolation, - ACTIONS(3237), 2, + ACTIONS(3455), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53495] = 5, + [56222] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + STATE(1895), 1, + sym_text_interpolation, + ACTIONS(3457), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56236] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(2384), 1, + ACTIONS(2491), 1, anon_sym_LBRACE, - STATE(905), 1, - sym_compound_statement, - STATE(1777), 1, + STATE(412), 1, + sym_declaration_list, + STATE(1896), 1, sym_text_interpolation, - [53511] = 4, + [56252] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1778), 1, + STATE(1897), 1, sym_text_interpolation, - ACTIONS(3239), 2, - anon_sym_LBRACE, - anon_sym_COLON, - [53525] = 5, + ACTIONS(3047), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56266] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3241), 1, - anon_sym_SEMI, - ACTIONS(3243), 1, - sym__automatic_semicolon, - STATE(1779), 1, + STATE(1898), 1, sym_text_interpolation, - [53541] = 5, + ACTIONS(3075), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56280] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(406), 1, - sym_compound_statement, - STATE(1780), 1, + STATE(1899), 1, sym_text_interpolation, - [53557] = 5, + ACTIONS(3459), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56294] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - STATE(1279), 1, - sym_compound_statement, - STATE(1781), 1, + ACTIONS(1727), 1, + anon_sym_DOLLAR, + STATE(1790), 1, + sym_variable_name, + STATE(1900), 1, sym_text_interpolation, - [53573] = 4, + [56310] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1782), 1, + ACTIONS(3461), 1, + anon_sym_SEMI, + ACTIONS(3463), 1, + sym__automatic_semicolon, + STATE(1901), 1, sym_text_interpolation, - ACTIONS(3245), 2, + [56326] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + STATE(1902), 1, + sym_text_interpolation, + ACTIONS(3465), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53587] = 4, + [56340] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1783), 1, + STATE(1903), 1, sym_text_interpolation, - ACTIONS(3247), 2, + ACTIONS(3467), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53601] = 5, + [56354] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_compound_statement, - STATE(1784), 1, + STATE(1904), 1, sym_text_interpolation, - [53617] = 5, + ACTIONS(3469), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56368] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1276), 1, - anon_sym_LPAREN, - STATE(516), 1, - sym_arguments, - STATE(1785), 1, + STATE(1905), 1, sym_text_interpolation, - [53633] = 5, + ACTIONS(3471), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56382] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - STATE(1208), 1, - sym_formal_parameters, - STATE(1786), 1, + STATE(1906), 1, sym_text_interpolation, - [53649] = 5, + ACTIONS(3473), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56396] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(2328), 1, + ACTIONS(354), 1, anon_sym_LBRACE, - STATE(1276), 1, - sym_declaration_list, - STATE(1787), 1, + ACTIONS(592), 1, + sym_comment, + STATE(741), 1, + sym_compound_statement, + STATE(1907), 1, sym_text_interpolation, - [53665] = 5, + [56412] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1800), 1, - anon_sym_DOLLAR, - STATE(1694), 1, - sym_variable_name, - STATE(1788), 1, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1331), 1, + sym_declaration_list, + STATE(1908), 1, sym_text_interpolation, - [53681] = 5, + [56428] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2328), 1, + ACTIONS(2441), 1, anon_sym_LBRACE, - STATE(1263), 1, + STATE(1332), 1, sym_declaration_list, - STATE(1789), 1, + STATE(1909), 1, sym_text_interpolation, - [53697] = 4, + [56444] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1790), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(536), 1, + sym_arguments, + STATE(1910), 1, sym_text_interpolation, - ACTIONS(3249), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53711] = 5, + [56460] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, - anon_sym_LBRACE, - STATE(725), 1, - sym_compound_statement, - STATE(1791), 1, + STATE(1911), 1, sym_text_interpolation, - [53727] = 5, + ACTIONS(2831), 2, + anon_sym_EQ, + anon_sym_RPAREN, + [56474] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LPAREN, - STATE(1532), 1, - sym_formal_parameters, - STATE(1792), 1, + STATE(1912), 1, sym_text_interpolation, - [53743] = 4, + ACTIONS(3475), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56488] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, + ACTIONS(1727), 1, + anon_sym_DOLLAR, STATE(1793), 1, + sym_variable_name, + STATE(1913), 1, sym_text_interpolation, - ACTIONS(447), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53757] = 5, + [56504] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3251), 1, - anon_sym_SEMI, - ACTIONS(3253), 1, - sym__automatic_semicolon, - STATE(1794), 1, + ACTIONS(2441), 1, + anon_sym_LBRACE, + STATE(1340), 1, + sym_declaration_list, + STATE(1914), 1, sym_text_interpolation, - [53773] = 5, + [56520] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + STATE(1915), 1, + sym_text_interpolation, + ACTIONS(3477), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56534] = 5, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(351), 1, + ACTIONS(2457), 1, anon_sym_LBRACE, - STATE(724), 1, - sym_compound_statement, - STATE(1795), 1, + STATE(758), 1, + sym_declaration_list, + STATE(1916), 1, sym_text_interpolation, - [53789] = 4, + [56550] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1796), 1, + ACTIONS(3479), 1, + anon_sym_COLON_COLON, + STATE(1917), 1, sym_text_interpolation, - ACTIONS(3255), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53803] = 4, + [56563] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1797), 1, + ACTIONS(3481), 1, + anon_sym_EQ_GT, + STATE(1918), 1, sym_text_interpolation, - ACTIONS(3257), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [53817] = 5, + [56576] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_RPAREN, - ACTIONS(3114), 1, - anon_sym_EQ, - STATE(1798), 1, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + STATE(1919), 1, sym_text_interpolation, - [53833] = 4, + [56589] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - STATE(1799), 1, + ACTIONS(3483), 1, + anon_sym_EQ, + STATE(1920), 1, sym_text_interpolation, - ACTIONS(3259), 2, - sym__automatic_semicolon, + [56602] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, + sym_comment, + ACTIONS(3485), 1, anon_sym_SEMI, - [53847] = 4, + STATE(1921), 1, + sym_text_interpolation, + [56615] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3261), 1, - anon_sym_RPAREN, - STATE(1800), 1, + ACTIONS(3487), 1, + anon_sym_LPAREN, + STATE(1922), 1, sym_text_interpolation, - [53860] = 4, + [56628] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3263), 1, - aux_sym_foreach_statement_token2, - STATE(1801), 1, + ACTIONS(2693), 1, + sym_name, + STATE(1923), 1, sym_text_interpolation, - [53873] = 4, + [56641] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3265), 1, - anon_sym_BSLASH, - STATE(1802), 1, + ACTIONS(3489), 1, + aux_sym_while_statement_token2, + STATE(1924), 1, sym_text_interpolation, - [53886] = 4, + [56654] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3267), 1, - anon_sym_BSLASH, - STATE(1803), 1, + ACTIONS(3122), 1, + anon_sym_LBRACE, + STATE(1925), 1, sym_text_interpolation, - [53899] = 4, + [56667] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3491), 1, anon_sym_BSLASH, - STATE(1804), 1, + STATE(1926), 1, sym_text_interpolation, - [53912] = 4, + [56680] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3271), 1, - sym_name, - STATE(1805), 1, + ACTIONS(3493), 1, + anon_sym_LPAREN, + STATE(1927), 1, sym_text_interpolation, - [53925] = 4, + [56693] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2849), 1, - anon_sym_RPAREN, - STATE(1806), 1, + ACTIONS(3495), 1, + anon_sym_EQ, + STATE(1928), 1, sym_text_interpolation, - [53938] = 4, + [56706] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3273), 1, + ACTIONS(770), 1, anon_sym_RPAREN, - STATE(1807), 1, + STATE(1929), 1, sym_text_interpolation, - [53951] = 4, + [56719] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3275), 1, - anon_sym_EQ_GT, - STATE(1808), 1, + ACTIONS(3497), 1, + anon_sym_RPAREN, + STATE(1930), 1, sym_text_interpolation, - [53964] = 4, + [56732] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3277), 1, - anon_sym_LPAREN, - STATE(1809), 1, + ACTIONS(3499), 1, + anon_sym_RPAREN, + STATE(1931), 1, sym_text_interpolation, - [53977] = 4, + [56745] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3279), 1, - anon_sym_EQ_GT, - STATE(1810), 1, + ACTIONS(2645), 1, + anon_sym_BSLASH, + STATE(1932), 1, sym_text_interpolation, - [53990] = 4, + [56758] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3281), 1, - sym_name, - STATE(1811), 1, + ACTIONS(3501), 1, + anon_sym_RPAREN, + STATE(1933), 1, sym_text_interpolation, - [54003] = 4, + [56771] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(723), 1, + ACTIONS(766), 1, anon_sym_RPAREN, - STATE(1812), 1, + STATE(1934), 1, sym_text_interpolation, - [54016] = 4, + [56784] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3283), 1, + ACTIONS(3503), 1, anon_sym_EQ, - STATE(1813), 1, + STATE(1935), 1, sym_text_interpolation, - [54029] = 4, + [56797] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3285), 1, - anon_sym_EQ, - STATE(1814), 1, + ACTIONS(2008), 1, + anon_sym_RPAREN, + STATE(1936), 1, sym_text_interpolation, - [54042] = 4, + [56810] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3287), 1, + ACTIONS(3505), 1, anon_sym_RPAREN, - STATE(1815), 1, + STATE(1937), 1, sym_text_interpolation, - [54055] = 4, + [56823] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(758), 1, anon_sym_RPAREN, - STATE(1816), 1, + STATE(1938), 1, sym_text_interpolation, - [54068] = 4, + [56836] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3291), 1, - anon_sym_LPAREN, - STATE(1817), 1, + ACTIONS(3423), 1, + anon_sym_RPAREN, + STATE(1939), 1, sym_text_interpolation, - [54081] = 4, + [56849] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3507), 1, anon_sym_EQ_GT, - STATE(1818), 1, + STATE(1940), 1, sym_text_interpolation, - [54094] = 4, + [56862] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3295), 1, - sym_name, - STATE(1819), 1, + ACTIONS(3509), 1, + anon_sym_RPAREN, + STATE(1941), 1, sym_text_interpolation, - [54107] = 4, + [56875] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(3511), 1, anon_sym_EQ_GT, - STATE(1820), 1, + STATE(1942), 1, sym_text_interpolation, - [54120] = 4, + [56888] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3299), 1, - aux_sym_while_statement_token2, - STATE(1821), 1, + ACTIONS(3513), 1, + anon_sym_RPAREN, + STATE(1943), 1, sym_text_interpolation, - [54133] = 4, + [56901] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3515), 1, anon_sym_EQ_GT, - STATE(1822), 1, + STATE(1944), 1, sym_text_interpolation, - [54146] = 4, + [56914] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3303), 1, - anon_sym_SEMI, - STATE(1823), 1, + ACTIONS(3517), 1, + sym_name, + STATE(1945), 1, sym_text_interpolation, - [54159] = 4, + [56927] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3305), 1, - anon_sym_RPAREN, - STATE(1824), 1, + ACTIONS(3519), 1, + anon_sym_EQ, + STATE(1946), 1, sym_text_interpolation, - [54172] = 4, + [56940] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3307), 1, - anon_sym_RPAREN, - STATE(1825), 1, + ACTIONS(3521), 1, + anon_sym_BSLASH, + STATE(1947), 1, sym_text_interpolation, - [54185] = 4, + [56953] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(761), 1, - anon_sym_RPAREN, - STATE(1826), 1, + ACTIONS(3523), 1, + aux_sym_namespace_use_declaration_token3, + STATE(1948), 1, sym_text_interpolation, - [54198] = 4, + [56966] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3309), 1, - aux_sym_foreach_statement_token2, - STATE(1827), 1, + ACTIONS(3525), 1, + anon_sym_EQ_GT, + STATE(1949), 1, sym_text_interpolation, - [54211] = 4, + [56979] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1952), 1, - anon_sym_RPAREN, - STATE(1828), 1, + ACTIONS(3527), 1, + anon_sym_EQ_GT, + STATE(1950), 1, sym_text_interpolation, - [54224] = 4, + [56992] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(683), 1, - anon_sym_RBRACK, - STATE(1829), 1, + ACTIONS(3529), 1, + anon_sym_EQ_GT, + STATE(1951), 1, sym_text_interpolation, - [54237] = 4, + [57005] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3531), 1, anon_sym_RPAREN, - STATE(1830), 1, + STATE(1952), 1, sym_text_interpolation, - [54250] = 4, + [57018] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(759), 1, - anon_sym_RPAREN, - STATE(1831), 1, + ACTIONS(3533), 1, + anon_sym_COLON_COLON, + STATE(1953), 1, sym_text_interpolation, - [54263] = 4, + [57031] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_COLON_COLON, - STATE(1832), 1, + ACTIONS(3535), 1, + aux_sym_arrow_function_token1, + STATE(1954), 1, sym_text_interpolation, - [54276] = 4, + [57044] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3315), 1, - sym_name, - STATE(1833), 1, + ACTIONS(3537), 1, + aux_sym_class_declaration_token1, + STATE(1955), 1, sym_text_interpolation, - [54289] = 4, + [57057] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(3539), 1, anon_sym_RPAREN, - STATE(1834), 1, + STATE(1956), 1, sym_text_interpolation, - [54302] = 4, + [57070] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3319), 1, - anon_sym_RPAREN, - STATE(1835), 1, + ACTIONS(3541), 1, + anon_sym_BSLASH, + STATE(1957), 1, sym_text_interpolation, - [54315] = 4, + [57083] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3321), 1, - anon_sym_RPAREN, - STATE(1836), 1, + ACTIONS(3543), 1, + sym_name, + STATE(1958), 1, sym_text_interpolation, - [54328] = 4, + [57096] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(751), 1, - anon_sym_RPAREN, - STATE(1837), 1, + ACTIONS(3545), 1, + anon_sym_EQ_GT, + STATE(1959), 1, sym_text_interpolation, - [54341] = 4, + [57109] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3323), 1, - aux_sym_while_statement_token1, - STATE(1838), 1, + ACTIONS(3547), 1, + sym_name, + STATE(1960), 1, sym_text_interpolation, - [54354] = 4, + [57122] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3549), 1, anon_sym_RPAREN, - STATE(1839), 1, + STATE(1961), 1, sym_text_interpolation, - [54367] = 4, + [57135] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3327), 1, - anon_sym_EQ_GT, - STATE(1840), 1, + ACTIONS(3551), 1, + anon_sym_RPAREN, + STATE(1962), 1, sym_text_interpolation, - [54380] = 4, + [57148] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3329), 1, - anon_sym_EQ_GT, - STATE(1841), 1, + ACTIONS(3553), 1, + anon_sym_EQ, + STATE(1963), 1, sym_text_interpolation, - [54393] = 4, + [57161] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3331), 1, - anon_sym_EQ_GT, - STATE(1842), 1, + ACTIONS(3555), 1, + anon_sym_RPAREN, + STATE(1964), 1, sym_text_interpolation, - [54406] = 4, + [57174] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3333), 1, - anon_sym_EQ_GT, - STATE(1843), 1, + ACTIONS(726), 1, + anon_sym_RPAREN, + STATE(1965), 1, sym_text_interpolation, - [54419] = 4, + [57187] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3335), 1, - anon_sym_RPAREN, - STATE(1844), 1, + ACTIONS(3557), 1, + anon_sym_LPAREN, + STATE(1966), 1, sym_text_interpolation, - [54432] = 4, + [57200] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3337), 1, - anon_sym_RPAREN, - STATE(1845), 1, + ACTIONS(3559), 1, + aux_sym_while_statement_token1, + STATE(1967), 1, sym_text_interpolation, - [54445] = 4, + [57213] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_EQ, - STATE(1846), 1, + ACTIONS(3561), 1, + anon_sym_COLON_COLON, + STATE(1968), 1, sym_text_interpolation, - [54458] = 4, + [57226] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3341), 1, + ACTIONS(3563), 1, aux_sym_class_declaration_token1, - STATE(1847), 1, + STATE(1969), 1, sym_text_interpolation, - [54471] = 4, + [57239] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3343), 1, + ACTIONS(3565), 1, aux_sym_arrow_function_token1, - STATE(1848), 1, + STATE(1970), 1, sym_text_interpolation, - [54484] = 4, + [57252] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(3567), 1, aux_sym_namespace_use_declaration_token3, - STATE(1849), 1, + STATE(1971), 1, sym_text_interpolation, - [54497] = 4, + [57265] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3347), 1, + ACTIONS(3569), 1, anon_sym_BSLASH, - STATE(1850), 1, + STATE(1972), 1, sym_text_interpolation, - [54510] = 4, + [57278] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3172), 1, - anon_sym_RPAREN, - STATE(1851), 1, + ACTIONS(3571), 1, + anon_sym_LPAREN, + STATE(1973), 1, sym_text_interpolation, - [54523] = 4, + [57291] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3349), 1, - anon_sym_BSLASH, - STATE(1852), 1, + ACTIONS(3573), 1, + sym_name, + STATE(1974), 1, sym_text_interpolation, - [54536] = 4, + [57304] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3351), 1, + ACTIONS(3575), 1, aux_sym_while_statement_token1, - STATE(1853), 1, + STATE(1975), 1, sym_text_interpolation, - [54549] = 4, + [57317] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3353), 1, - anon_sym_BSLASH, - STATE(1854), 1, + ACTIONS(3577), 1, + aux_sym_class_declaration_token1, + STATE(1976), 1, sym_text_interpolation, - [54562] = 4, + [57330] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3355), 1, + ACTIONS(3579), 1, anon_sym_BSLASH, - STATE(1855), 1, + STATE(1977), 1, sym_text_interpolation, - [54575] = 4, + [57343] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(3581), 1, + anon_sym_EQ_GT, + STATE(1978), 1, + sym_text_interpolation, + [57356] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3583), 1, anon_sym_RPAREN, - STATE(1856), 1, + STATE(1979), 1, sym_text_interpolation, - [54588] = 4, + [57369] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3359), 1, - anon_sym_EQ_GT, - STATE(1857), 1, + ACTIONS(714), 1, + anon_sym_RPAREN, + STATE(1980), 1, sym_text_interpolation, - [54601] = 4, + [57382] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_COLON_COLON, - STATE(1858), 1, + ACTIONS(3170), 1, + anon_sym_LBRACE, + STATE(1981), 1, sym_text_interpolation, - [54614] = 4, + [57395] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3363), 1, + ACTIONS(3585), 1, anon_sym_COLON_COLON, - STATE(1859), 1, + STATE(1982), 1, sym_text_interpolation, - [54627] = 4, + [57408] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3365), 1, - aux_sym_if_statement_token2, - STATE(1860), 1, + ACTIONS(3587), 1, + anon_sym_COLON_COLON, + STATE(1983), 1, sym_text_interpolation, - [54640] = 4, + [57421] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(3589), 1, anon_sym_BSLASH, - STATE(1861), 1, + STATE(1984), 1, sym_text_interpolation, - [54653] = 4, + [57434] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(705), 1, - anon_sym_RPAREN, - STATE(1862), 1, + ACTIONS(3591), 1, + anon_sym_COLON_COLON, + STATE(1985), 1, sym_text_interpolation, - [54666] = 4, + [57447] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3369), 1, - anon_sym_COLON_COLON, - STATE(1863), 1, + ACTIONS(3593), 1, + aux_sym_foreach_statement_token2, + STATE(1986), 1, sym_text_interpolation, - [54679] = 4, + [57460] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(769), 1, + ACTIONS(794), 1, anon_sym_SEMI, - STATE(1864), 1, + STATE(1987), 1, sym_text_interpolation, - [54692] = 4, + [57473] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3371), 1, - aux_sym_if_statement_token2, - STATE(1865), 1, + ACTIONS(3595), 1, + anon_sym_COLON_COLON, + STATE(1988), 1, sym_text_interpolation, - [54705] = 4, + [57486] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2595), 1, - anon_sym_BSLASH, - STATE(1866), 1, + ACTIONS(3597), 1, + anon_sym_LPAREN, + STATE(1989), 1, sym_text_interpolation, - [54718] = 4, + [57499] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3373), 1, - anon_sym_EQ_GT, - STATE(1867), 1, + ACTIONS(3599), 1, + aux_sym_foreach_statement_token2, + STATE(1990), 1, sym_text_interpolation, - [54731] = 4, + [57512] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3375), 1, - anon_sym_COLON_COLON, - STATE(1868), 1, + ACTIONS(3601), 1, + anon_sym_EQ_GT, + STATE(1991), 1, sym_text_interpolation, - [54744] = 4, + [57525] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(755), 1, + ACTIONS(796), 1, anon_sym_RPAREN, - STATE(1869), 1, + STATE(1992), 1, sym_text_interpolation, - [54757] = 4, + [57538] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3377), 1, - anon_sym_EQ, - STATE(1870), 1, + ACTIONS(3603), 1, + anon_sym_LPAREN, + STATE(1993), 1, sym_text_interpolation, - [54770] = 4, + [57551] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3379), 1, + ACTIONS(3605), 1, anon_sym_SEMI, - STATE(1871), 1, + STATE(1994), 1, sym_text_interpolation, - [54783] = 4, + [57564] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2851), 1, - anon_sym_LBRACE, - STATE(1872), 1, + ACTIONS(3607), 1, + anon_sym_COLON_COLON, + STATE(1995), 1, sym_text_interpolation, - [54796] = 4, + [57577] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2048), 1, anon_sym_RPAREN, - STATE(1873), 1, + STATE(1996), 1, sym_text_interpolation, - [54809] = 4, + [57590] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_RPAREN, - STATE(1874), 1, + ACTIONS(3609), 1, + anon_sym_BSLASH, + STATE(1997), 1, sym_text_interpolation, - [54822] = 4, + [57603] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3381), 1, + ACTIONS(3611), 1, anon_sym_COLON_COLON, - STATE(1875), 1, + STATE(1998), 1, sym_text_interpolation, - [54835] = 4, + [57616] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym_COLON_COLON, - STATE(1876), 1, + ACTIONS(3613), 1, + anon_sym_RPAREN, + STATE(1999), 1, sym_text_interpolation, - [54848] = 4, + [57629] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(739), 1, + ACTIONS(754), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(2000), 1, sym_text_interpolation, - [54861] = 4, + [57642] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3385), 1, - anon_sym_BSLASH, - STATE(1878), 1, + ACTIONS(3615), 1, + sym_name, + STATE(2001), 1, sym_text_interpolation, - [54874] = 4, + [57655] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3387), 1, - anon_sym_SEMI, - STATE(1879), 1, + ACTIONS(688), 1, + anon_sym_RBRACK, + STATE(2002), 1, sym_text_interpolation, - [54887] = 4, + [57668] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3617), 1, anon_sym_RPAREN, - STATE(1880), 1, + STATE(2003), 1, sym_text_interpolation, - [54900] = 4, + [57681] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(747), 1, - anon_sym_RPAREN, - STATE(1881), 1, + ACTIONS(3619), 1, + sym_name, + STATE(2004), 1, sym_text_interpolation, - [54913] = 4, + [57694] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3017), 1, - anon_sym_RPAREN, - STATE(1882), 1, + ACTIONS(3421), 1, + anon_sym_LPAREN, + STATE(2005), 1, sym_text_interpolation, - [54926] = 4, + [57707] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3391), 1, + ACTIONS(3621), 1, sym_name, - STATE(1883), 1, + STATE(2006), 1, sym_text_interpolation, - [54939] = 4, + [57720] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3393), 1, - sym_name, - STATE(1884), 1, + ACTIONS(3623), 1, + anon_sym_EQ_GT, + STATE(2007), 1, sym_text_interpolation, - [54952] = 4, + [57733] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3625), 1, sym_name, - STATE(1885), 1, + STATE(2008), 1, sym_text_interpolation, - [54965] = 4, + [57746] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3397), 1, - anon_sym_EQ_GT, - STATE(1886), 1, + ACTIONS(3251), 1, + anon_sym_RPAREN, + STATE(2009), 1, sym_text_interpolation, - [54978] = 4, + [57759] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3399), 1, - sym_name, - STATE(1887), 1, + ACTIONS(3120), 1, + anon_sym_RPAREN, + STATE(2010), 1, sym_text_interpolation, - [54991] = 4, + [57772] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3170), 1, - anon_sym_LPAREN, - STATE(1888), 1, + ACTIONS(3627), 1, + sym_name, + STATE(2011), 1, sym_text_interpolation, - [55004] = 4, + [57785] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(3629), 1, sym_name, - STATE(1889), 1, + STATE(2012), 1, sym_text_interpolation, - [55017] = 4, + [57798] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2618), 1, + ACTIONS(3631), 1, sym_name, - STATE(1890), 1, + STATE(2013), 1, sym_text_interpolation, - [55030] = 4, + [57811] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(689), 1, - anon_sym_RBRACK, - STATE(1891), 1, + ACTIONS(3633), 1, + aux_sym_foreach_statement_token2, + STATE(2014), 1, sym_text_interpolation, - [55043] = 4, + [57824] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3403), 1, - sym_name, - STATE(1892), 1, + ACTIONS(3635), 1, + anon_sym_EQ_GT, + STATE(2015), 1, sym_text_interpolation, - [55056] = 4, + [57837] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(743), 1, - anon_sym_SEMI, - STATE(1893), 1, + ACTIONS(3637), 1, + anon_sym_LPAREN, + STATE(2016), 1, sym_text_interpolation, - [55069] = 4, + [57850] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3405), 1, - anon_sym_RPAREN, - STATE(1894), 1, + ACTIONS(3639), 1, + aux_sym_foreach_statement_token2, + STATE(2017), 1, sym_text_interpolation, - [55082] = 4, + [57863] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3407), 1, - aux_sym_arrow_function_token1, - STATE(1895), 1, + ACTIONS(3641), 1, + anon_sym_RPAREN, + STATE(2018), 1, sym_text_interpolation, - [55095] = 4, + [57876] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3409), 1, - aux_sym_if_statement_token2, - STATE(1896), 1, + ACTIONS(3643), 1, + aux_sym_arrow_function_token1, + STATE(2019), 1, sym_text_interpolation, - [55108] = 4, + [57889] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2494), 1, - anon_sym_COLON_COLON, - STATE(1897), 1, + ACTIONS(3645), 1, + anon_sym_RPAREN, + STATE(2020), 1, sym_text_interpolation, - [55121] = 4, + [57902] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3411), 1, - anon_sym_COLON_COLON, - STATE(1898), 1, + ACTIONS(3647), 1, + anon_sym_LPAREN, + STATE(2021), 1, sym_text_interpolation, - [55134] = 4, + [57915] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3413), 1, - anon_sym_EQ_GT, - STATE(1899), 1, + ACTIONS(3649), 1, + sym_name, + STATE(2022), 1, sym_text_interpolation, - [55147] = 4, + [57928] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3415), 1, - anon_sym_EQ, - STATE(1900), 1, + ACTIONS(3651), 1, + aux_sym_class_declaration_token1, + STATE(2023), 1, sym_text_interpolation, - [55160] = 4, + [57941] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(753), 1, - anon_sym_SEMI, - STATE(1901), 1, + ACTIONS(3653), 1, + anon_sym_LPAREN, + STATE(2024), 1, sym_text_interpolation, - [55173] = 4, + [57954] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3417), 1, - anon_sym_EQ_GT, - STATE(1902), 1, + ACTIONS(784), 1, + anon_sym_SEMI, + STATE(2025), 1, sym_text_interpolation, - [55186] = 4, + [57967] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3419), 1, - aux_sym_namespace_use_declaration_token3, - STATE(1903), 1, + ACTIONS(3655), 1, + sym_name, + STATE(2026), 1, sym_text_interpolation, - [55199] = 4, + [57980] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3421), 1, - aux_sym_arrow_function_token1, - STATE(1904), 1, + ACTIONS(702), 1, + anon_sym_RBRACK, + STATE(2027), 1, sym_text_interpolation, - [55212] = 4, + [57993] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3423), 1, - anon_sym_SEMI, - STATE(1905), 1, + ACTIONS(3657), 1, + anon_sym_RPAREN, + STATE(2028), 1, sym_text_interpolation, - [55225] = 4, + [58006] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3425), 1, - aux_sym_class_declaration_token1, - STATE(1906), 1, + ACTIONS(3659), 1, + anon_sym_SEMI, + STATE(2029), 1, sym_text_interpolation, - [55238] = 4, + [58019] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3427), 1, - anon_sym_BSLASH, - STATE(1907), 1, + ACTIONS(746), 1, + anon_sym_RPAREN, + STATE(2030), 1, sym_text_interpolation, - [55251] = 4, + [58032] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3661), 1, anon_sym_RPAREN, - STATE(1908), 1, + STATE(2031), 1, sym_text_interpolation, - [55264] = 4, + [58045] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3431), 1, - anon_sym_RPAREN, - STATE(1909), 1, + ACTIONS(3663), 1, + anon_sym_EQ_GT, + STATE(2032), 1, sym_text_interpolation, - [55277] = 4, + [58058] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3433), 1, - anon_sym_LPAREN, - STATE(1910), 1, + ACTIONS(3665), 1, + sym_name, + STATE(2033), 1, sym_text_interpolation, - [55290] = 4, + [58071] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3667), 1, sym_name, - STATE(1911), 1, + STATE(2034), 1, sym_text_interpolation, - [55303] = 4, + [58084] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3669), 1, anon_sym_RPAREN, - STATE(1912), 1, + STATE(2035), 1, sym_text_interpolation, - [55316] = 4, + [58097] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3439), 1, - aux_sym_while_statement_token2, - STATE(1913), 1, + ACTIONS(3671), 1, + sym_name, + STATE(2036), 1, sym_text_interpolation, - [55329] = 4, + [58110] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3441), 1, - anon_sym_LPAREN, - STATE(1914), 1, + ACTIONS(3673), 1, + anon_sym_RPAREN, + STATE(2037), 1, sym_text_interpolation, - [55342] = 4, + [58123] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3443), 1, - anon_sym_LPAREN, - STATE(1915), 1, + ACTIONS(3675), 1, + sym_name, + STATE(2038), 1, sym_text_interpolation, - [55355] = 4, + [58136] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3445), 1, - anon_sym_RPAREN, - STATE(1916), 1, + ACTIONS(3677), 1, + aux_sym_if_statement_token2, + STATE(2039), 1, sym_text_interpolation, - [55368] = 4, + [58149] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3447), 1, + ACTIONS(2608), 1, sym_name, - STATE(1917), 1, + STATE(2040), 1, sym_text_interpolation, - [55381] = 4, + [58162] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_if_statement_token2, - STATE(1918), 1, + ACTIONS(3679), 1, + anon_sym_EQ_GT, + STATE(2041), 1, sym_text_interpolation, - [55394] = 4, + [58175] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3451), 1, - anon_sym_LPAREN, - STATE(1919), 1, + ACTIONS(3681), 1, + anon_sym_COLON_COLON, + STATE(2042), 1, sym_text_interpolation, - [55407] = 4, + [58188] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3453), 1, - aux_sym_arrow_function_token1, - STATE(1920), 1, + ACTIONS(3683), 1, + sym_name, + STATE(2043), 1, sym_text_interpolation, - [55420] = 4, + [58201] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3455), 1, - anon_sym_LPAREN, - STATE(1921), 1, + ACTIONS(3685), 1, + aux_sym_arrow_function_token1, + STATE(2044), 1, sym_text_interpolation, - [55433] = 4, + [58214] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3457), 1, - anon_sym_LPAREN, - STATE(1922), 1, + ACTIONS(2022), 1, + anon_sym_RPAREN, + STATE(2045), 1, sym_text_interpolation, - [55446] = 4, + [58227] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3459), 1, + ACTIONS(3687), 1, anon_sym_LPAREN, - STATE(1923), 1, + STATE(2046), 1, sym_text_interpolation, - [55459] = 4, + [58240] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3461), 1, + ACTIONS(3689), 1, anon_sym_LPAREN, - STATE(1924), 1, + STATE(2047), 1, sym_text_interpolation, - [55472] = 4, + [58253] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3463), 1, - aux_sym_foreach_statement_token2, - STATE(1925), 1, + ACTIONS(3336), 1, + anon_sym_EQ, + STATE(2048), 1, sym_text_interpolation, - [55485] = 4, + [58266] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(767), 1, + ACTIONS(786), 1, anon_sym_RPAREN, - STATE(1926), 1, + STATE(2049), 1, sym_text_interpolation, - [55498] = 4, + [58279] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2585), 1, + ACTIONS(3691), 1, sym_name, - STATE(1927), 1, + STATE(2050), 1, sym_text_interpolation, - [55511] = 4, + [58292] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3465), 1, - anon_sym_COLON_COLON, - STATE(1928), 1, + ACTIONS(748), 1, + anon_sym_RPAREN, + STATE(2051), 1, sym_text_interpolation, - [55524] = 4, + [58305] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, + sym_comment, + ACTIONS(3693), 1, + anon_sym_SEMI, + STATE(2052), 1, + sym_text_interpolation, + [58318] = 4, + ACTIONS(3), 1, + anon_sym_QMARK_GT, + ACTIONS(592), 1, sym_comment, - ACTIONS(3467), 1, + ACTIONS(3695), 1, anon_sym_LPAREN, - STATE(1929), 1, + STATE(2053), 1, sym_text_interpolation, - [55537] = 4, + [58331] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3469), 1, - sym_name, - STATE(1930), 1, + ACTIONS(3697), 1, + aux_sym_while_statement_token2, + STATE(2054), 1, sym_text_interpolation, - [55550] = 4, + [58344] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3471), 1, + ACTIONS(3699), 1, anon_sym_SEMI, - STATE(1931), 1, + STATE(2055), 1, sym_text_interpolation, - [55563] = 4, + [58357] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3473), 1, - sym_name, - STATE(1932), 1, + ACTIONS(2030), 1, + anon_sym_RPAREN, + STATE(2056), 1, sym_text_interpolation, - [55576] = 4, + [58370] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(777), 1, + ACTIONS(778), 1, anon_sym_SEMI, - STATE(1933), 1, + STATE(2057), 1, sym_text_interpolation, - [55589] = 4, + [58383] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3475), 1, - sym_name, - STATE(1934), 1, + ACTIONS(3701), 1, + anon_sym_BSLASH, + STATE(2058), 1, sym_text_interpolation, - [55602] = 4, + [58396] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3114), 1, - anon_sym_EQ, - STATE(1935), 1, + ACTIONS(3703), 1, + aux_sym_if_statement_token2, + STATE(2059), 1, sym_text_interpolation, - [55615] = 4, + [58409] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3477), 1, + ACTIONS(3705), 1, anon_sym_SEMI, - STATE(1936), 1, + STATE(2060), 1, sym_text_interpolation, - [55628] = 4, + [58422] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(1920), 1, - anon_sym_RPAREN, - STATE(1937), 1, + ACTIONS(3707), 1, + aux_sym_if_statement_token2, + STATE(2061), 1, sym_text_interpolation, - [55641] = 4, + [58435] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3479), 1, - aux_sym_foreach_statement_token2, - STATE(1938), 1, + ACTIONS(3709), 1, + anon_sym_RPAREN, + STATE(2062), 1, sym_text_interpolation, - [55654] = 4, + [58448] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(3711), 1, anon_sym_LPAREN, - STATE(1939), 1, + STATE(2063), 1, sym_text_interpolation, - [55667] = 4, + [58461] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3483), 1, - anon_sym_RPAREN, - STATE(1940), 1, + ACTIONS(3713), 1, + anon_sym_LPAREN, + STATE(2064), 1, sym_text_interpolation, - [55680] = 4, + [58474] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3485), 1, + ACTIONS(3715), 1, anon_sym_SEMI, - STATE(1941), 1, + STATE(2065), 1, sym_text_interpolation, - [55693] = 4, + [58487] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(2892), 1, - anon_sym_LBRACE, - STATE(1942), 1, + ACTIONS(3717), 1, + aux_sym_if_statement_token2, + STATE(2066), 1, sym_text_interpolation, - [55706] = 4, + [58500] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3487), 1, + ACTIONS(3719), 1, anon_sym_LPAREN, - STATE(1943), 1, + STATE(2067), 1, sym_text_interpolation, - [55719] = 4, + [58513] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(3721), 1, anon_sym_LPAREN, - STATE(1944), 1, - sym_text_interpolation, - [55732] = 4, - ACTIONS(3), 1, - anon_sym_QMARK_GT, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3491), 1, - aux_sym_if_statement_token2, - STATE(1945), 1, + STATE(2068), 1, sym_text_interpolation, - [55745] = 4, + [58526] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(760), 1, anon_sym_SEMI, - STATE(1946), 1, + STATE(2069), 1, sym_text_interpolation, - [55758] = 4, + [58539] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3495), 1, - anon_sym_COLON_COLON, - STATE(1947), 1, + ACTIONS(3723), 1, + anon_sym_BSLASH, + STATE(2070), 1, sym_text_interpolation, - [55771] = 4, + [58552] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_LPAREN, - STATE(1948), 1, + ACTIONS(3725), 1, + anon_sym_SEMI, + STATE(2071), 1, sym_text_interpolation, - [55784] = 4, + [58565] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3499), 1, - ts_builtin_sym_end, - STATE(1949), 1, + ACTIONS(3727), 1, + aux_sym_if_statement_token2, + STATE(2072), 1, sym_text_interpolation, - [55797] = 4, + [58578] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3729), 1, anon_sym_LPAREN, - STATE(1950), 1, + STATE(2073), 1, sym_text_interpolation, - [55810] = 4, + [58591] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3503), 1, - anon_sym_LPAREN, - STATE(1951), 1, + ACTIONS(3731), 1, + ts_builtin_sym_end, + STATE(2074), 1, sym_text_interpolation, - [55823] = 4, + [58604] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(775), 1, - anon_sym_RPAREN, - STATE(1952), 1, + ACTIONS(3733), 1, + anon_sym_LPAREN, + STATE(2075), 1, sym_text_interpolation, - [55836] = 4, + [58617] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3505), 1, + ACTIONS(3735), 1, anon_sym_LPAREN, - STATE(1953), 1, + STATE(2076), 1, sym_text_interpolation, - [55849] = 4, + [58630] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, - ACTIONS(5), 1, + ACTIONS(592), 1, sym_comment, - ACTIONS(3507), 1, - anon_sym_LPAREN, - STATE(1954), 1, + ACTIONS(3737), 1, + anon_sym_BSLASH, + STATE(2077), 1, sym_text_interpolation, - [55862] = 1, - ACTIONS(3509), 1, + [58643] = 1, + ACTIONS(3739), 1, ts_builtin_sym_end, - [55866] = 1, - ACTIONS(3511), 1, + [58647] = 1, + ACTIONS(3741), 1, ts_builtin_sym_end, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(508)] = 0, - [SMALL_STATE(509)] = 79, - [SMALL_STATE(510)] = 158, - [SMALL_STATE(511)] = 237, - [SMALL_STATE(512)] = 316, - [SMALL_STATE(513)] = 395, - [SMALL_STATE(514)] = 482, - [SMALL_STATE(515)] = 556, - [SMALL_STATE(516)] = 630, - [SMALL_STATE(517)] = 704, - [SMALL_STATE(518)] = 778, - [SMALL_STATE(519)] = 852, - [SMALL_STATE(520)] = 926, - [SMALL_STATE(521)] = 1000, - [SMALL_STATE(522)] = 1074, - [SMALL_STATE(523)] = 1148, - [SMALL_STATE(524)] = 1222, - [SMALL_STATE(525)] = 1296, - [SMALL_STATE(526)] = 1370, - [SMALL_STATE(527)] = 1444, - [SMALL_STATE(528)] = 1525, - [SMALL_STATE(529)] = 1610, - [SMALL_STATE(530)] = 1694, - [SMALL_STATE(531)] = 1769, - [SMALL_STATE(532)] = 1858, - [SMALL_STATE(533)] = 1933, - [SMALL_STATE(534)] = 2068, - [SMALL_STATE(535)] = 2147, - [SMALL_STATE(536)] = 2230, - [SMALL_STATE(537)] = 2365, - [SMALL_STATE(538)] = 2500, - [SMALL_STATE(539)] = 2583, - [SMALL_STATE(540)] = 2666, - [SMALL_STATE(541)] = 2741, - [SMALL_STATE(542)] = 2830, - [SMALL_STATE(543)] = 2905, - [SMALL_STATE(544)] = 3040, - [SMALL_STATE(545)] = 3115, - [SMALL_STATE(546)] = 3185, - [SMALL_STATE(547)] = 3255, - [SMALL_STATE(548)] = 3325, - [SMALL_STATE(549)] = 3395, - [SMALL_STATE(550)] = 3465, - [SMALL_STATE(551)] = 3535, - [SMALL_STATE(552)] = 3605, - [SMALL_STATE(553)] = 3675, - [SMALL_STATE(554)] = 3745, - [SMALL_STATE(555)] = 3823, - [SMALL_STATE(556)] = 3893, - [SMALL_STATE(557)] = 3963, - [SMALL_STATE(558)] = 4045, - [SMALL_STATE(559)] = 4115, - [SMALL_STATE(560)] = 4185, - [SMALL_STATE(561)] = 4269, - [SMALL_STATE(562)] = 4357, - [SMALL_STATE(563)] = 4427, - [SMALL_STATE(564)] = 4497, - [SMALL_STATE(565)] = 4567, - [SMALL_STATE(566)] = 4651, - [SMALL_STATE(567)] = 4734, - [SMALL_STATE(568)] = 4817, - [SMALL_STATE(569)] = 4894, - [SMALL_STATE(570)] = 4971, - [SMALL_STATE(571)] = 5048, - [SMALL_STATE(572)] = 5130, - [SMALL_STATE(573)] = 5208, - [SMALL_STATE(574)] = 5286, - [SMALL_STATE(575)] = 5414, - [SMALL_STATE(576)] = 5542, - [SMALL_STATE(577)] = 5618, - [SMALL_STATE(578)] = 5746, - [SMALL_STATE(579)] = 5874, - [SMALL_STATE(580)] = 5940, - [SMALL_STATE(581)] = 6007, - [SMALL_STATE(582)] = 6076, - [SMALL_STATE(583)] = 6136, - [SMALL_STATE(584)] = 6200, - [SMALL_STATE(585)] = 6260, - [SMALL_STATE(586)] = 6326, - [SMALL_STATE(587)] = 6389, - [SMALL_STATE(588)] = 6452, - [SMALL_STATE(589)] = 6515, - [SMALL_STATE(590)] = 6580, - [SMALL_STATE(591)] = 6641, - [SMALL_STATE(592)] = 6706, - [SMALL_STATE(593)] = 6767, - [SMALL_STATE(594)] = 6830, - [SMALL_STATE(595)] = 6891, - [SMALL_STATE(596)] = 6956, - [SMALL_STATE(597)] = 7019, - [SMALL_STATE(598)] = 7082, - [SMALL_STATE(599)] = 7145, - [SMALL_STATE(600)] = 7208, - [SMALL_STATE(601)] = 7271, - [SMALL_STATE(602)] = 7336, - [SMALL_STATE(603)] = 7401, - [SMALL_STATE(604)] = 7466, - [SMALL_STATE(605)] = 7529, - [SMALL_STATE(606)] = 7592, - [SMALL_STATE(607)] = 7653, - [SMALL_STATE(608)] = 7716, - [SMALL_STATE(609)] = 7781, - [SMALL_STATE(610)] = 7842, - [SMALL_STATE(611)] = 7907, - [SMALL_STATE(612)] = 7972, - [SMALL_STATE(613)] = 8033, - [SMALL_STATE(614)] = 8091, - [SMALL_STATE(615)] = 8151, - [SMALL_STATE(616)] = 8209, - [SMALL_STATE(617)] = 8267, - [SMALL_STATE(618)] = 8325, - [SMALL_STATE(619)] = 8383, - [SMALL_STATE(620)] = 8441, - [SMALL_STATE(621)] = 8499, - [SMALL_STATE(622)] = 8557, - [SMALL_STATE(623)] = 8617, - [SMALL_STATE(624)] = 8675, - [SMALL_STATE(625)] = 8733, - [SMALL_STATE(626)] = 8791, - [SMALL_STATE(627)] = 8849, - [SMALL_STATE(628)] = 8907, - [SMALL_STATE(629)] = 8965, - [SMALL_STATE(630)] = 9023, - [SMALL_STATE(631)] = 9081, - [SMALL_STATE(632)] = 9139, - [SMALL_STATE(633)] = 9197, - [SMALL_STATE(634)] = 9255, - [SMALL_STATE(635)] = 9313, - [SMALL_STATE(636)] = 9371, - [SMALL_STATE(637)] = 9429, - [SMALL_STATE(638)] = 9487, - [SMALL_STATE(639)] = 9552, - [SMALL_STATE(640)] = 9611, - [SMALL_STATE(641)] = 9670, - [SMALL_STATE(642)] = 9727, - [SMALL_STATE(643)] = 9788, - [SMALL_STATE(644)] = 9845, - [SMALL_STATE(645)] = 9914, - [SMALL_STATE(646)] = 9975, - [SMALL_STATE(647)] = 10034, - [SMALL_STATE(648)] = 10103, - [SMALL_STATE(649)] = 10166, - [SMALL_STATE(650)] = 10225, - [SMALL_STATE(651)] = 10329, - [SMALL_STATE(652)] = 10391, - [SMALL_STATE(653)] = 10450, - [SMALL_STATE(654)] = 10505, - [SMALL_STATE(655)] = 10566, - [SMALL_STATE(656)] = 10627, - [SMALL_STATE(657)] = 10682, - [SMALL_STATE(658)] = 10743, - [SMALL_STATE(659)] = 10800, - [SMALL_STATE(660)] = 10857, - [SMALL_STATE(661)] = 10916, - [SMALL_STATE(662)] = 10973, - [SMALL_STATE(663)] = 11034, - [SMALL_STATE(664)] = 11095, - [SMALL_STATE(665)] = 11156, - [SMALL_STATE(666)] = 11211, - [SMALL_STATE(667)] = 11270, - [SMALL_STATE(668)] = 11329, - [SMALL_STATE(669)] = 11384, - [SMALL_STATE(670)] = 11445, - [SMALL_STATE(671)] = 11504, - [SMALL_STATE(672)] = 11565, - [SMALL_STATE(673)] = 11626, - [SMALL_STATE(674)] = 11685, - [SMALL_STATE(675)] = 11744, - [SMALL_STATE(676)] = 11805, - [SMALL_STATE(677)] = 11864, - [SMALL_STATE(678)] = 11919, - [SMALL_STATE(679)] = 11980, - [SMALL_STATE(680)] = 12037, - [SMALL_STATE(681)] = 12094, - [SMALL_STATE(682)] = 12153, - [SMALL_STATE(683)] = 12210, - [SMALL_STATE(684)] = 12269, - [SMALL_STATE(685)] = 12328, - [SMALL_STATE(686)] = 12385, - [SMALL_STATE(687)] = 12444, - [SMALL_STATE(688)] = 12505, - [SMALL_STATE(689)] = 12559, - [SMALL_STATE(690)] = 12615, - [SMALL_STATE(691)] = 12669, - [SMALL_STATE(692)] = 12723, - [SMALL_STATE(693)] = 12777, - [SMALL_STATE(694)] = 12831, - [SMALL_STATE(695)] = 12885, - [SMALL_STATE(696)] = 12939, - [SMALL_STATE(697)] = 12993, - [SMALL_STATE(698)] = 13049, - [SMALL_STATE(699)] = 13103, - [SMALL_STATE(700)] = 13157, - [SMALL_STATE(701)] = 13211, - [SMALL_STATE(702)] = 13267, - [SMALL_STATE(703)] = 13321, - [SMALL_STATE(704)] = 13375, - [SMALL_STATE(705)] = 13429, - [SMALL_STATE(706)] = 13483, - [SMALL_STATE(707)] = 13537, - [SMALL_STATE(708)] = 13591, - [SMALL_STATE(709)] = 13645, - [SMALL_STATE(710)] = 13703, - [SMALL_STATE(711)] = 13757, - [SMALL_STATE(712)] = 13811, - [SMALL_STATE(713)] = 13865, - [SMALL_STATE(714)] = 13919, - [SMALL_STATE(715)] = 13974, - [SMALL_STATE(716)] = 14029, - [SMALL_STATE(717)] = 14084, - [SMALL_STATE(718)] = 14139, - [SMALL_STATE(719)] = 14231, - [SMALL_STATE(720)] = 14283, - [SMALL_STATE(721)] = 14335, - [SMALL_STATE(722)] = 14387, - [SMALL_STATE(723)] = 14439, - [SMALL_STATE(724)] = 14491, - [SMALL_STATE(725)] = 14543, - [SMALL_STATE(726)] = 14595, - [SMALL_STATE(727)] = 14647, - [SMALL_STATE(728)] = 14699, - [SMALL_STATE(729)] = 14751, - [SMALL_STATE(730)] = 14803, - [SMALL_STATE(731)] = 14855, - [SMALL_STATE(732)] = 14907, - [SMALL_STATE(733)] = 14959, - [SMALL_STATE(734)] = 15011, - [SMALL_STATE(735)] = 15063, - [SMALL_STATE(736)] = 15115, - [SMALL_STATE(737)] = 15169, - [SMALL_STATE(738)] = 15221, - [SMALL_STATE(739)] = 15313, - [SMALL_STATE(740)] = 15365, - [SMALL_STATE(741)] = 15417, - [SMALL_STATE(742)] = 15469, - [SMALL_STATE(743)] = 15559, - [SMALL_STATE(744)] = 15611, - [SMALL_STATE(745)] = 15663, - [SMALL_STATE(746)] = 15715, - [SMALL_STATE(747)] = 15767, - [SMALL_STATE(748)] = 15819, - [SMALL_STATE(749)] = 15871, - [SMALL_STATE(750)] = 15923, - [SMALL_STATE(751)] = 15975, - [SMALL_STATE(752)] = 16027, - [SMALL_STATE(753)] = 16079, - [SMALL_STATE(754)] = 16131, - [SMALL_STATE(755)] = 16183, - [SMALL_STATE(756)] = 16235, - [SMALL_STATE(757)] = 16286, - [SMALL_STATE(758)] = 16337, - [SMALL_STATE(759)] = 16423, - [SMALL_STATE(760)] = 16507, - [SMALL_STATE(761)] = 16591, - [SMALL_STATE(762)] = 16659, - [SMALL_STATE(763)] = 16743, - [SMALL_STATE(764)] = 16827, - [SMALL_STATE(765)] = 16911, - [SMALL_STATE(766)] = 16991, - [SMALL_STATE(767)] = 17063, - [SMALL_STATE(768)] = 17147, - [SMALL_STATE(769)] = 17231, - [SMALL_STATE(770)] = 17315, - [SMALL_STATE(771)] = 17405, - [SMALL_STATE(772)] = 17489, - [SMALL_STATE(773)] = 17567, - [SMALL_STATE(774)] = 17641, - [SMALL_STATE(775)] = 17699, - [SMALL_STATE(776)] = 17777, - [SMALL_STATE(777)] = 17839, - [SMALL_STATE(778)] = 17895, - [SMALL_STATE(779)] = 17979, - [SMALL_STATE(780)] = 18063, - [SMALL_STATE(781)] = 18147, - [SMALL_STATE(782)] = 18237, - [SMALL_STATE(783)] = 18303, - [SMALL_STATE(784)] = 18381, - [SMALL_STATE(785)] = 18459, - [SMALL_STATE(786)] = 18511, - [SMALL_STATE(787)] = 18595, - [SMALL_STATE(788)] = 18673, - [SMALL_STATE(789)] = 18743, - [SMALL_STATE(790)] = 18797, - [SMALL_STATE(791)] = 18881, - [SMALL_STATE(792)] = 18965, - [SMALL_STATE(793)] = 19017, - [SMALL_STATE(794)] = 19095, - [SMALL_STATE(795)] = 19179, - [SMALL_STATE(796)] = 19263, - [SMALL_STATE(797)] = 19341, - [SMALL_STATE(798)] = 19423, - [SMALL_STATE(799)] = 19507, - [SMALL_STATE(800)] = 19590, - [SMALL_STATE(801)] = 19677, - [SMALL_STATE(802)] = 19760, - [SMALL_STATE(803)] = 19837, - [SMALL_STATE(804)] = 19916, - [SMALL_STATE(805)] = 19997, - [SMALL_STATE(806)] = 20070, - [SMALL_STATE(807)] = 20141, - [SMALL_STATE(808)] = 20208, - [SMALL_STATE(809)] = 20295, - [SMALL_STATE(810)] = 20356, - [SMALL_STATE(811)] = 20441, - [SMALL_STATE(812)] = 20518, - [SMALL_STATE(813)] = 20601, - [SMALL_STATE(814)] = 20658, - [SMALL_STATE(815)] = 20741, - [SMALL_STATE(816)] = 20796, - [SMALL_STATE(817)] = 20847, - [SMALL_STATE(818)] = 20930, - [SMALL_STATE(819)] = 21013, - [SMALL_STATE(820)] = 21090, - [SMALL_STATE(821)] = 21167, - [SMALL_STATE(822)] = 21220, - [SMALL_STATE(823)] = 21303, - [SMALL_STATE(824)] = 21386, - [SMALL_STATE(825)] = 21455, - [SMALL_STATE(826)] = 21520, - [SMALL_STATE(827)] = 21603, - [SMALL_STATE(828)] = 21690, - [SMALL_STATE(829)] = 21773, - [SMALL_STATE(830)] = 21850, - [SMALL_STATE(831)] = 21933, - [SMALL_STATE(832)] = 22016, - [SMALL_STATE(833)] = 22093, - [SMALL_STATE(834)] = 22176, - [SMALL_STATE(835)] = 22259, - [SMALL_STATE(836)] = 22342, - [SMALL_STATE(837)] = 22425, - [SMALL_STATE(838)] = 22508, - [SMALL_STATE(839)] = 22585, - [SMALL_STATE(840)] = 22668, - [SMALL_STATE(841)] = 22719, - [SMALL_STATE(842)] = 22767, - [SMALL_STATE(843)] = 22815, - [SMALL_STATE(844)] = 22863, - [SMALL_STATE(845)] = 22911, - [SMALL_STATE(846)] = 22959, - [SMALL_STATE(847)] = 23007, - [SMALL_STATE(848)] = 23091, - [SMALL_STATE(849)] = 23139, - [SMALL_STATE(850)] = 23189, - [SMALL_STATE(851)] = 23237, - [SMALL_STATE(852)] = 23287, - [SMALL_STATE(853)] = 23371, - [SMALL_STATE(854)] = 23457, - [SMALL_STATE(855)] = 23541, - [SMALL_STATE(856)] = 23623, - [SMALL_STATE(857)] = 23707, - [SMALL_STATE(858)] = 23791, - [SMALL_STATE(859)] = 23873, - [SMALL_STATE(860)] = 23955, - [SMALL_STATE(861)] = 24037, - [SMALL_STATE(862)] = 24085, - [SMALL_STATE(863)] = 24133, - [SMALL_STATE(864)] = 24215, - [SMALL_STATE(865)] = 24299, - [SMALL_STATE(866)] = 24347, - [SMALL_STATE(867)] = 24429, - [SMALL_STATE(868)] = 24511, - [SMALL_STATE(869)] = 24593, - [SMALL_STATE(870)] = 24675, - [SMALL_STATE(871)] = 24759, - [SMALL_STATE(872)] = 24807, - [SMALL_STATE(873)] = 24855, - [SMALL_STATE(874)] = 24937, - [SMALL_STATE(875)] = 24985, - [SMALL_STATE(876)] = 25033, - [SMALL_STATE(877)] = 25081, - [SMALL_STATE(878)] = 25163, - [SMALL_STATE(879)] = 25211, - [SMALL_STATE(880)] = 25259, - [SMALL_STATE(881)] = 25341, - [SMALL_STATE(882)] = 25405, - [SMALL_STATE(883)] = 25453, - [SMALL_STATE(884)] = 25501, - [SMALL_STATE(885)] = 25569, - [SMALL_STATE(886)] = 25621, - [SMALL_STATE(887)] = 25669, - [SMALL_STATE(888)] = 25745, - [SMALL_STATE(889)] = 25821, - [SMALL_STATE(890)] = 25901, - [SMALL_STATE(891)] = 25979, - [SMALL_STATE(892)] = 26049, - [SMALL_STATE(893)] = 26115, - [SMALL_STATE(894)] = 26175, - [SMALL_STATE(895)] = 26259, - [SMALL_STATE(896)] = 26315, - [SMALL_STATE(897)] = 26369, - [SMALL_STATE(898)] = 26451, - [SMALL_STATE(899)] = 26499, - [SMALL_STATE(900)] = 26547, - [SMALL_STATE(901)] = 26597, - [SMALL_STATE(902)] = 26673, - [SMALL_STATE(903)] = 26749, - [SMALL_STATE(904)] = 26821, - [SMALL_STATE(905)] = 26869, - [SMALL_STATE(906)] = 26917, - [SMALL_STATE(907)] = 26965, - [SMALL_STATE(908)] = 27047, - [SMALL_STATE(909)] = 27129, - [SMALL_STATE(910)] = 27211, - [SMALL_STATE(911)] = 27295, - [SMALL_STATE(912)] = 27379, - [SMALL_STATE(913)] = 27427, - [SMALL_STATE(914)] = 27503, - [SMALL_STATE(915)] = 27579, - [SMALL_STATE(916)] = 27627, - [SMALL_STATE(917)] = 27675, - [SMALL_STATE(918)] = 27723, - [SMALL_STATE(919)] = 27805, - [SMALL_STATE(920)] = 27887, - [SMALL_STATE(921)] = 27935, - [SMALL_STATE(922)] = 27983, - [SMALL_STATE(923)] = 28067, - [SMALL_STATE(924)] = 28115, - [SMALL_STATE(925)] = 28199, - [SMALL_STATE(926)] = 28275, - [SMALL_STATE(927)] = 28323, - [SMALL_STATE(928)] = 28371, - [SMALL_STATE(929)] = 28455, - [SMALL_STATE(930)] = 28503, - [SMALL_STATE(931)] = 28589, - [SMALL_STATE(932)] = 28672, - [SMALL_STATE(933)] = 28753, - [SMALL_STATE(934)] = 28834, - [SMALL_STATE(935)] = 28915, - [SMALL_STATE(936)] = 28996, - [SMALL_STATE(937)] = 29077, - [SMALL_STATE(938)] = 29152, - [SMALL_STATE(939)] = 29233, - [SMALL_STATE(940)] = 29314, - [SMALL_STATE(941)] = 29395, - [SMALL_STATE(942)] = 29444, - [SMALL_STATE(943)] = 29525, - [SMALL_STATE(944)] = 29606, - [SMALL_STATE(945)] = 29681, - [SMALL_STATE(946)] = 29762, - [SMALL_STATE(947)] = 29843, - [SMALL_STATE(948)] = 29926, - [SMALL_STATE(949)] = 30009, - [SMALL_STATE(950)] = 30088, - [SMALL_STATE(951)] = 30165, - [SMALL_STATE(952)] = 30236, - [SMALL_STATE(953)] = 30305, - [SMALL_STATE(954)] = 30388, - [SMALL_STATE(955)] = 30451, - [SMALL_STATE(956)] = 30516, - [SMALL_STATE(957)] = 30591, - [SMALL_STATE(958)] = 30674, - [SMALL_STATE(959)] = 30755, - [SMALL_STATE(960)] = 30836, - [SMALL_STATE(961)] = 30917, - [SMALL_STATE(962)] = 30992, - [SMALL_STATE(963)] = 31073, - [SMALL_STATE(964)] = 31154, - [SMALL_STATE(965)] = 31205, - [SMALL_STATE(966)] = 31280, - [SMALL_STATE(967)] = 31361, - [SMALL_STATE(968)] = 31436, - [SMALL_STATE(969)] = 31503, - [SMALL_STATE(970)] = 31578, - [SMALL_STATE(971)] = 31627, - [SMALL_STATE(972)] = 31680, - [SMALL_STATE(973)] = 31735, - [SMALL_STATE(974)] = 31794, - [SMALL_STATE(975)] = 31874, - [SMALL_STATE(976)] = 31953, - [SMALL_STATE(977)] = 32036, - [SMALL_STATE(978)] = 32117, - [SMALL_STATE(979)] = 32196, - [SMALL_STATE(980)] = 32277, - [SMALL_STATE(981)] = 32356, - [SMALL_STATE(982)] = 32437, - [SMALL_STATE(983)] = 32517, - [SMALL_STATE(984)] = 32595, - [SMALL_STATE(985)] = 32675, - [SMALL_STATE(986)] = 32753, - [SMALL_STATE(987)] = 32831, - [SMALL_STATE(988)] = 32887, - [SMALL_STATE(989)] = 32965, - [SMALL_STATE(990)] = 33045, - [SMALL_STATE(991)] = 33125, - [SMALL_STATE(992)] = 33203, - [SMALL_STATE(993)] = 33281, - [SMALL_STATE(994)] = 33361, - [SMALL_STATE(995)] = 33439, - [SMALL_STATE(996)] = 33517, - [SMALL_STATE(997)] = 33595, - [SMALL_STATE(998)] = 33673, - [SMALL_STATE(999)] = 33751, - [SMALL_STATE(1000)] = 33829, - [SMALL_STATE(1001)] = 33907, - [SMALL_STATE(1002)] = 33987, - [SMALL_STATE(1003)] = 34065, - [SMALL_STATE(1004)] = 34143, - [SMALL_STATE(1005)] = 34221, - [SMALL_STATE(1006)] = 34301, - [SMALL_STATE(1007)] = 34379, - [SMALL_STATE(1008)] = 34457, - [SMALL_STATE(1009)] = 34537, - [SMALL_STATE(1010)] = 34614, - [SMALL_STATE(1011)] = 34691, - [SMALL_STATE(1012)] = 34768, - [SMALL_STATE(1013)] = 34845, - [SMALL_STATE(1014)] = 34922, - [SMALL_STATE(1015)] = 34999, - [SMALL_STATE(1016)] = 35076, - [SMALL_STATE(1017)] = 35153, - [SMALL_STATE(1018)] = 35230, - [SMALL_STATE(1019)] = 35307, - [SMALL_STATE(1020)] = 35384, - [SMALL_STATE(1021)] = 35461, - [SMALL_STATE(1022)] = 35538, - [SMALL_STATE(1023)] = 35615, - [SMALL_STATE(1024)] = 35692, - [SMALL_STATE(1025)] = 35769, - [SMALL_STATE(1026)] = 35846, - [SMALL_STATE(1027)] = 35923, - [SMALL_STATE(1028)] = 36000, - [SMALL_STATE(1029)] = 36077, - [SMALL_STATE(1030)] = 36154, - [SMALL_STATE(1031)] = 36231, - [SMALL_STATE(1032)] = 36308, - [SMALL_STATE(1033)] = 36385, - [SMALL_STATE(1034)] = 36462, - [SMALL_STATE(1035)] = 36539, - [SMALL_STATE(1036)] = 36616, - [SMALL_STATE(1037)] = 36693, - [SMALL_STATE(1038)] = 36770, - [SMALL_STATE(1039)] = 36847, - [SMALL_STATE(1040)] = 36924, - [SMALL_STATE(1041)] = 37001, - [SMALL_STATE(1042)] = 37078, - [SMALL_STATE(1043)] = 37155, - [SMALL_STATE(1044)] = 37232, - [SMALL_STATE(1045)] = 37309, - [SMALL_STATE(1046)] = 37386, - [SMALL_STATE(1047)] = 37463, - [SMALL_STATE(1048)] = 37540, - [SMALL_STATE(1049)] = 37617, - [SMALL_STATE(1050)] = 37694, - [SMALL_STATE(1051)] = 37771, - [SMALL_STATE(1052)] = 37848, - [SMALL_STATE(1053)] = 37925, - [SMALL_STATE(1054)] = 38002, - [SMALL_STATE(1055)] = 38079, - [SMALL_STATE(1056)] = 38156, - [SMALL_STATE(1057)] = 38233, - [SMALL_STATE(1058)] = 38310, - [SMALL_STATE(1059)] = 38387, - [SMALL_STATE(1060)] = 38464, - [SMALL_STATE(1061)] = 38541, - [SMALL_STATE(1062)] = 38585, - [SMALL_STATE(1063)] = 38625, - [SMALL_STATE(1064)] = 38689, - [SMALL_STATE(1065)] = 38753, - [SMALL_STATE(1066)] = 38793, - [SMALL_STATE(1067)] = 38835, - [SMALL_STATE(1068)] = 38874, - [SMALL_STATE(1069)] = 38913, - [SMALL_STATE(1070)] = 38952, - [SMALL_STATE(1071)] = 39010, - [SMALL_STATE(1072)] = 39068, - [SMALL_STATE(1073)] = 39126, - [SMALL_STATE(1074)] = 39191, - [SMALL_STATE(1075)] = 39256, - [SMALL_STATE(1076)] = 39321, - [SMALL_STATE(1077)] = 39386, - [SMALL_STATE(1078)] = 39451, - [SMALL_STATE(1079)] = 39516, - [SMALL_STATE(1080)] = 39579, - [SMALL_STATE(1081)] = 39644, - [SMALL_STATE(1082)] = 39709, - [SMALL_STATE(1083)] = 39760, - [SMALL_STATE(1084)] = 39811, - [SMALL_STATE(1085)] = 39862, - [SMALL_STATE(1086)] = 39894, - [SMALL_STATE(1087)] = 39922, - [SMALL_STATE(1088)] = 39950, - [SMALL_STATE(1089)] = 39978, - [SMALL_STATE(1090)] = 40005, - [SMALL_STATE(1091)] = 40048, - [SMALL_STATE(1092)] = 40091, - [SMALL_STATE(1093)] = 40114, - [SMALL_STATE(1094)] = 40153, - [SMALL_STATE(1095)] = 40176, - [SMALL_STATE(1096)] = 40199, - [SMALL_STATE(1097)] = 40222, - [SMALL_STATE(1098)] = 40245, - [SMALL_STATE(1099)] = 40268, - [SMALL_STATE(1100)] = 40291, - [SMALL_STATE(1101)] = 40314, - [SMALL_STATE(1102)] = 40337, - [SMALL_STATE(1103)] = 40376, - [SMALL_STATE(1104)] = 40399, - [SMALL_STATE(1105)] = 40422, - [SMALL_STATE(1106)] = 40461, - [SMALL_STATE(1107)] = 40484, - [SMALL_STATE(1108)] = 40523, - [SMALL_STATE(1109)] = 40546, - [SMALL_STATE(1110)] = 40569, - [SMALL_STATE(1111)] = 40592, - [SMALL_STATE(1112)] = 40631, - [SMALL_STATE(1113)] = 40654, - [SMALL_STATE(1114)] = 40677, - [SMALL_STATE(1115)] = 40700, - [SMALL_STATE(1116)] = 40732, - [SMALL_STATE(1117)] = 40762, - [SMALL_STATE(1118)] = 40798, - [SMALL_STATE(1119)] = 40830, - [SMALL_STATE(1120)] = 40862, - [SMALL_STATE(1121)] = 40898, - [SMALL_STATE(1122)] = 40934, - [SMALL_STATE(1123)] = 40970, - [SMALL_STATE(1124)] = 41006, - [SMALL_STATE(1125)] = 41042, - [SMALL_STATE(1126)] = 41073, - [SMALL_STATE(1127)] = 41102, - [SMALL_STATE(1128)] = 41133, - [SMALL_STATE(1129)] = 41162, - [SMALL_STATE(1130)] = 41191, - [SMALL_STATE(1131)] = 41220, - [SMALL_STATE(1132)] = 41247, - [SMALL_STATE(1133)] = 41278, - [SMALL_STATE(1134)] = 41305, - [SMALL_STATE(1135)] = 41336, - [SMALL_STATE(1136)] = 41367, - [SMALL_STATE(1137)] = 41396, - [SMALL_STATE(1138)] = 41425, - [SMALL_STATE(1139)] = 41454, - [SMALL_STATE(1140)] = 41481, - [SMALL_STATE(1141)] = 41510, - [SMALL_STATE(1142)] = 41539, - [SMALL_STATE(1143)] = 41568, - [SMALL_STATE(1144)] = 41597, - [SMALL_STATE(1145)] = 41626, - [SMALL_STATE(1146)] = 41657, - [SMALL_STATE(1147)] = 41688, - [SMALL_STATE(1148)] = 41717, - [SMALL_STATE(1149)] = 41748, - [SMALL_STATE(1150)] = 41779, - [SMALL_STATE(1151)] = 41808, - [SMALL_STATE(1152)] = 41837, - [SMALL_STATE(1153)] = 41866, - [SMALL_STATE(1154)] = 41897, - [SMALL_STATE(1155)] = 41926, - [SMALL_STATE(1156)] = 41955, - [SMALL_STATE(1157)] = 41981, - [SMALL_STATE(1158)] = 42007, - [SMALL_STATE(1159)] = 42035, - [SMALL_STATE(1160)] = 42065, - [SMALL_STATE(1161)] = 42095, - [SMALL_STATE(1162)] = 42129, - [SMALL_STATE(1163)] = 42163, - [SMALL_STATE(1164)] = 42189, - [SMALL_STATE(1165)] = 42212, - [SMALL_STATE(1166)] = 42237, - [SMALL_STATE(1167)] = 42260, - [SMALL_STATE(1168)] = 42287, - [SMALL_STATE(1169)] = 42310, - [SMALL_STATE(1170)] = 42333, - [SMALL_STATE(1171)] = 42356, - [SMALL_STATE(1172)] = 42379, - [SMALL_STATE(1173)] = 42402, - [SMALL_STATE(1174)] = 42423, - [SMALL_STATE(1175)] = 42446, - [SMALL_STATE(1176)] = 42469, - [SMALL_STATE(1177)] = 42492, - [SMALL_STATE(1178)] = 42515, - [SMALL_STATE(1179)] = 42538, - [SMALL_STATE(1180)] = 42559, - [SMALL_STATE(1181)] = 42584, - [SMALL_STATE(1182)] = 42605, - [SMALL_STATE(1183)] = 42631, - [SMALL_STATE(1184)] = 42659, - [SMALL_STATE(1185)] = 42681, - [SMALL_STATE(1186)] = 42707, - [SMALL_STATE(1187)] = 42733, - [SMALL_STATE(1188)] = 42761, - [SMALL_STATE(1189)] = 42789, - [SMALL_STATE(1190)] = 42817, - [SMALL_STATE(1191)] = 42839, - [SMALL_STATE(1192)] = 42861, - [SMALL_STATE(1193)] = 42885, - [SMALL_STATE(1194)] = 42911, - [SMALL_STATE(1195)] = 42939, - [SMALL_STATE(1196)] = 42961, - [SMALL_STATE(1197)] = 42987, - [SMALL_STATE(1198)] = 43013, - [SMALL_STATE(1199)] = 43041, - [SMALL_STATE(1200)] = 43069, - [SMALL_STATE(1201)] = 43093, - [SMALL_STATE(1202)] = 43117, - [SMALL_STATE(1203)] = 43141, - [SMALL_STATE(1204)] = 43169, - [SMALL_STATE(1205)] = 43195, - [SMALL_STATE(1206)] = 43213, - [SMALL_STATE(1207)] = 43231, - [SMALL_STATE(1208)] = 43259, - [SMALL_STATE(1209)] = 43287, - [SMALL_STATE(1210)] = 43313, - [SMALL_STATE(1211)] = 43335, - [SMALL_STATE(1212)] = 43357, - [SMALL_STATE(1213)] = 43385, - [SMALL_STATE(1214)] = 43407, - [SMALL_STATE(1215)] = 43435, - [SMALL_STATE(1216)] = 43463, - [SMALL_STATE(1217)] = 43481, - [SMALL_STATE(1218)] = 43509, - [SMALL_STATE(1219)] = 43535, - [SMALL_STATE(1220)] = 43561, - [SMALL_STATE(1221)] = 43585, - [SMALL_STATE(1222)] = 43613, - [SMALL_STATE(1223)] = 43641, - [SMALL_STATE(1224)] = 43663, - [SMALL_STATE(1225)] = 43681, - [SMALL_STATE(1226)] = 43699, - [SMALL_STATE(1227)] = 43717, - [SMALL_STATE(1228)] = 43745, - [SMALL_STATE(1229)] = 43773, - [SMALL_STATE(1230)] = 43801, - [SMALL_STATE(1231)] = 43823, - [SMALL_STATE(1232)] = 43847, - [SMALL_STATE(1233)] = 43873, - [SMALL_STATE(1234)] = 43901, - [SMALL_STATE(1235)] = 43920, - [SMALL_STATE(1236)] = 43943, - [SMALL_STATE(1237)] = 43966, - [SMALL_STATE(1238)] = 43987, - [SMALL_STATE(1239)] = 44006, - [SMALL_STATE(1240)] = 44025, - [SMALL_STATE(1241)] = 44044, - [SMALL_STATE(1242)] = 44065, - [SMALL_STATE(1243)] = 44082, - [SMALL_STATE(1244)] = 44103, - [SMALL_STATE(1245)] = 44124, - [SMALL_STATE(1246)] = 44143, - [SMALL_STATE(1247)] = 44162, - [SMALL_STATE(1248)] = 44183, - [SMALL_STATE(1249)] = 44204, - [SMALL_STATE(1250)] = 44227, - [SMALL_STATE(1251)] = 44248, - [SMALL_STATE(1252)] = 44267, - [SMALL_STATE(1253)] = 44292, - [SMALL_STATE(1254)] = 44311, - [SMALL_STATE(1255)] = 44332, - [SMALL_STATE(1256)] = 44357, - [SMALL_STATE(1257)] = 44380, - [SMALL_STATE(1258)] = 44405, - [SMALL_STATE(1259)] = 44426, - [SMALL_STATE(1260)] = 44447, - [SMALL_STATE(1261)] = 44470, - [SMALL_STATE(1262)] = 44487, - [SMALL_STATE(1263)] = 44506, - [SMALL_STATE(1264)] = 44527, - [SMALL_STATE(1265)] = 44548, - [SMALL_STATE(1266)] = 44569, - [SMALL_STATE(1267)] = 44594, - [SMALL_STATE(1268)] = 44615, - [SMALL_STATE(1269)] = 44640, - [SMALL_STATE(1270)] = 44661, - [SMALL_STATE(1271)] = 44682, - [SMALL_STATE(1272)] = 44707, - [SMALL_STATE(1273)] = 44732, - [SMALL_STATE(1274)] = 44755, - [SMALL_STATE(1275)] = 44778, - [SMALL_STATE(1276)] = 44801, - [SMALL_STATE(1277)] = 44822, - [SMALL_STATE(1278)] = 44847, - [SMALL_STATE(1279)] = 44868, - [SMALL_STATE(1280)] = 44887, - [SMALL_STATE(1281)] = 44908, - [SMALL_STATE(1282)] = 44929, - [SMALL_STATE(1283)] = 44952, - [SMALL_STATE(1284)] = 44973, - [SMALL_STATE(1285)] = 44994, - [SMALL_STATE(1286)] = 45015, - [SMALL_STATE(1287)] = 45040, - [SMALL_STATE(1288)] = 45061, - [SMALL_STATE(1289)] = 45084, - [SMALL_STATE(1290)] = 45109, - [SMALL_STATE(1291)] = 45130, - [SMALL_STATE(1292)] = 45151, - [SMALL_STATE(1293)] = 45172, - [SMALL_STATE(1294)] = 45195, - [SMALL_STATE(1295)] = 45216, - [SMALL_STATE(1296)] = 45237, - [SMALL_STATE(1297)] = 45258, - [SMALL_STATE(1298)] = 45281, - [SMALL_STATE(1299)] = 45302, - [SMALL_STATE(1300)] = 45323, - [SMALL_STATE(1301)] = 45346, - [SMALL_STATE(1302)] = 45371, - [SMALL_STATE(1303)] = 45392, - [SMALL_STATE(1304)] = 45413, - [SMALL_STATE(1305)] = 45436, - [SMALL_STATE(1306)] = 45458, - [SMALL_STATE(1307)] = 45478, - [SMALL_STATE(1308)] = 45500, - [SMALL_STATE(1309)] = 45518, - [SMALL_STATE(1310)] = 45538, - [SMALL_STATE(1311)] = 45560, - [SMALL_STATE(1312)] = 45580, - [SMALL_STATE(1313)] = 45600, - [SMALL_STATE(1314)] = 45622, - [SMALL_STATE(1315)] = 45638, - [SMALL_STATE(1316)] = 45654, - [SMALL_STATE(1317)] = 45670, - [SMALL_STATE(1318)] = 45692, - [SMALL_STATE(1319)] = 45712, - [SMALL_STATE(1320)] = 45734, - [SMALL_STATE(1321)] = 45754, - [SMALL_STATE(1322)] = 45770, - [SMALL_STATE(1323)] = 45786, - [SMALL_STATE(1324)] = 45806, - [SMALL_STATE(1325)] = 45828, - [SMALL_STATE(1326)] = 45846, - [SMALL_STATE(1327)] = 45864, - [SMALL_STATE(1328)] = 45884, - [SMALL_STATE(1329)] = 45904, - [SMALL_STATE(1330)] = 45924, - [SMALL_STATE(1331)] = 45942, - [SMALL_STATE(1332)] = 45958, - [SMALL_STATE(1333)] = 45978, - [SMALL_STATE(1334)] = 45998, - [SMALL_STATE(1335)] = 46018, - [SMALL_STATE(1336)] = 46038, - [SMALL_STATE(1337)] = 46058, - [SMALL_STATE(1338)] = 46074, - [SMALL_STATE(1339)] = 46094, - [SMALL_STATE(1340)] = 46114, - [SMALL_STATE(1341)] = 46136, - [SMALL_STATE(1342)] = 46154, - [SMALL_STATE(1343)] = 46176, - [SMALL_STATE(1344)] = 46196, - [SMALL_STATE(1345)] = 46212, - [SMALL_STATE(1346)] = 46228, - [SMALL_STATE(1347)] = 46250, - [SMALL_STATE(1348)] = 46270, - [SMALL_STATE(1349)] = 46286, - [SMALL_STATE(1350)] = 46308, - [SMALL_STATE(1351)] = 46326, - [SMALL_STATE(1352)] = 46346, - [SMALL_STATE(1353)] = 46362, - [SMALL_STATE(1354)] = 46380, - [SMALL_STATE(1355)] = 46400, - [SMALL_STATE(1356)] = 46422, - [SMALL_STATE(1357)] = 46440, - [SMALL_STATE(1358)] = 46456, - [SMALL_STATE(1359)] = 46472, - [SMALL_STATE(1360)] = 46488, - [SMALL_STATE(1361)] = 46504, - [SMALL_STATE(1362)] = 46522, - [SMALL_STATE(1363)] = 46538, - [SMALL_STATE(1364)] = 46558, - [SMALL_STATE(1365)] = 46580, - [SMALL_STATE(1366)] = 46596, - [SMALL_STATE(1367)] = 46616, - [SMALL_STATE(1368)] = 46636, - [SMALL_STATE(1369)] = 46654, - [SMALL_STATE(1370)] = 46676, - [SMALL_STATE(1371)] = 46696, - [SMALL_STATE(1372)] = 46716, - [SMALL_STATE(1373)] = 46738, - [SMALL_STATE(1374)] = 46758, - [SMALL_STATE(1375)] = 46774, - [SMALL_STATE(1376)] = 46790, - [SMALL_STATE(1377)] = 46806, - [SMALL_STATE(1378)] = 46822, - [SMALL_STATE(1379)] = 46840, - [SMALL_STATE(1380)] = 46856, - [SMALL_STATE(1381)] = 46872, - [SMALL_STATE(1382)] = 46894, - [SMALL_STATE(1383)] = 46910, - [SMALL_STATE(1384)] = 46932, - [SMALL_STATE(1385)] = 46954, - [SMALL_STATE(1386)] = 46972, - [SMALL_STATE(1387)] = 46992, - [SMALL_STATE(1388)] = 47008, - [SMALL_STATE(1389)] = 47028, - [SMALL_STATE(1390)] = 47050, - [SMALL_STATE(1391)] = 47068, - [SMALL_STATE(1392)] = 47088, - [SMALL_STATE(1393)] = 47110, - [SMALL_STATE(1394)] = 47132, - [SMALL_STATE(1395)] = 47148, - [SMALL_STATE(1396)] = 47164, - [SMALL_STATE(1397)] = 47186, - [SMALL_STATE(1398)] = 47202, - [SMALL_STATE(1399)] = 47218, - [SMALL_STATE(1400)] = 47238, - [SMALL_STATE(1401)] = 47256, - [SMALL_STATE(1402)] = 47278, - [SMALL_STATE(1403)] = 47298, - [SMALL_STATE(1404)] = 47320, - [SMALL_STATE(1405)] = 47342, - [SMALL_STATE(1406)] = 47362, - [SMALL_STATE(1407)] = 47378, - [SMALL_STATE(1408)] = 47394, - [SMALL_STATE(1409)] = 47414, - [SMALL_STATE(1410)] = 47431, - [SMALL_STATE(1411)] = 47450, - [SMALL_STATE(1412)] = 47469, - [SMALL_STATE(1413)] = 47486, - [SMALL_STATE(1414)] = 47505, - [SMALL_STATE(1415)] = 47522, - [SMALL_STATE(1416)] = 47541, - [SMALL_STATE(1417)] = 47560, - [SMALL_STATE(1418)] = 47579, - [SMALL_STATE(1419)] = 47594, - [SMALL_STATE(1420)] = 47609, - [SMALL_STATE(1421)] = 47626, - [SMALL_STATE(1422)] = 47643, - [SMALL_STATE(1423)] = 47660, - [SMALL_STATE(1424)] = 47675, - [SMALL_STATE(1425)] = 47692, - [SMALL_STATE(1426)] = 47711, - [SMALL_STATE(1427)] = 47730, - [SMALL_STATE(1428)] = 47749, - [SMALL_STATE(1429)] = 47764, - [SMALL_STATE(1430)] = 47781, - [SMALL_STATE(1431)] = 47800, - [SMALL_STATE(1432)] = 47815, - [SMALL_STATE(1433)] = 47830, - [SMALL_STATE(1434)] = 47849, - [SMALL_STATE(1435)] = 47868, - [SMALL_STATE(1436)] = 47885, - [SMALL_STATE(1437)] = 47902, - [SMALL_STATE(1438)] = 47917, - [SMALL_STATE(1439)] = 47936, - [SMALL_STATE(1440)] = 47953, - [SMALL_STATE(1441)] = 47968, - [SMALL_STATE(1442)] = 47985, - [SMALL_STATE(1443)] = 48000, - [SMALL_STATE(1444)] = 48019, - [SMALL_STATE(1445)] = 48036, - [SMALL_STATE(1446)] = 48055, - [SMALL_STATE(1447)] = 48074, - [SMALL_STATE(1448)] = 48093, - [SMALL_STATE(1449)] = 48112, - [SMALL_STATE(1450)] = 48131, - [SMALL_STATE(1451)] = 48148, - [SMALL_STATE(1452)] = 48167, - [SMALL_STATE(1453)] = 48186, - [SMALL_STATE(1454)] = 48205, - [SMALL_STATE(1455)] = 48224, - [SMALL_STATE(1456)] = 48241, - [SMALL_STATE(1457)] = 48260, - [SMALL_STATE(1458)] = 48277, - [SMALL_STATE(1459)] = 48294, - [SMALL_STATE(1460)] = 48309, - [SMALL_STATE(1461)] = 48328, - [SMALL_STATE(1462)] = 48345, - [SMALL_STATE(1463)] = 48362, - [SMALL_STATE(1464)] = 48381, - [SMALL_STATE(1465)] = 48400, - [SMALL_STATE(1466)] = 48415, - [SMALL_STATE(1467)] = 48434, - [SMALL_STATE(1468)] = 48451, - [SMALL_STATE(1469)] = 48466, - [SMALL_STATE(1470)] = 48483, - [SMALL_STATE(1471)] = 48500, - [SMALL_STATE(1472)] = 48517, - [SMALL_STATE(1473)] = 48534, - [SMALL_STATE(1474)] = 48553, - [SMALL_STATE(1475)] = 48572, - [SMALL_STATE(1476)] = 48589, - [SMALL_STATE(1477)] = 48606, - [SMALL_STATE(1478)] = 48623, - [SMALL_STATE(1479)] = 48640, - [SMALL_STATE(1480)] = 48659, - [SMALL_STATE(1481)] = 48678, - [SMALL_STATE(1482)] = 48695, - [SMALL_STATE(1483)] = 48714, - [SMALL_STATE(1484)] = 48731, - [SMALL_STATE(1485)] = 48750, - [SMALL_STATE(1486)] = 48765, - [SMALL_STATE(1487)] = 48780, - [SMALL_STATE(1488)] = 48799, - [SMALL_STATE(1489)] = 48816, - [SMALL_STATE(1490)] = 48835, - [SMALL_STATE(1491)] = 48852, - [SMALL_STATE(1492)] = 48871, - [SMALL_STATE(1493)] = 48888, - [SMALL_STATE(1494)] = 48903, - [SMALL_STATE(1495)] = 48920, - [SMALL_STATE(1496)] = 48939, - [SMALL_STATE(1497)] = 48956, - [SMALL_STATE(1498)] = 48973, - [SMALL_STATE(1499)] = 48992, - [SMALL_STATE(1500)] = 49009, - [SMALL_STATE(1501)] = 49026, - [SMALL_STATE(1502)] = 49043, - [SMALL_STATE(1503)] = 49062, - [SMALL_STATE(1504)] = 49081, - [SMALL_STATE(1505)] = 49100, - [SMALL_STATE(1506)] = 49115, - [SMALL_STATE(1507)] = 49132, - [SMALL_STATE(1508)] = 49151, - [SMALL_STATE(1509)] = 49168, - [SMALL_STATE(1510)] = 49187, - [SMALL_STATE(1511)] = 49204, - [SMALL_STATE(1512)] = 49223, - [SMALL_STATE(1513)] = 49242, - [SMALL_STATE(1514)] = 49259, - [SMALL_STATE(1515)] = 49278, - [SMALL_STATE(1516)] = 49295, - [SMALL_STATE(1517)] = 49312, - [SMALL_STATE(1518)] = 49327, - [SMALL_STATE(1519)] = 49344, - [SMALL_STATE(1520)] = 49363, - [SMALL_STATE(1521)] = 49378, - [SMALL_STATE(1522)] = 49397, - [SMALL_STATE(1523)] = 49414, - [SMALL_STATE(1524)] = 49431, - [SMALL_STATE(1525)] = 49450, - [SMALL_STATE(1526)] = 49469, - [SMALL_STATE(1527)] = 49484, - [SMALL_STATE(1528)] = 49503, - [SMALL_STATE(1529)] = 49522, - [SMALL_STATE(1530)] = 49537, - [SMALL_STATE(1531)] = 49556, - [SMALL_STATE(1532)] = 49573, - [SMALL_STATE(1533)] = 49592, - [SMALL_STATE(1534)] = 49609, - [SMALL_STATE(1535)] = 49626, - [SMALL_STATE(1536)] = 49643, - [SMALL_STATE(1537)] = 49662, - [SMALL_STATE(1538)] = 49681, - [SMALL_STATE(1539)] = 49700, - [SMALL_STATE(1540)] = 49717, - [SMALL_STATE(1541)] = 49734, - [SMALL_STATE(1542)] = 49751, - [SMALL_STATE(1543)] = 49768, - [SMALL_STATE(1544)] = 49787, - [SMALL_STATE(1545)] = 49806, - [SMALL_STATE(1546)] = 49823, - [SMALL_STATE(1547)] = 49840, - [SMALL_STATE(1548)] = 49859, - [SMALL_STATE(1549)] = 49874, - [SMALL_STATE(1550)] = 49891, - [SMALL_STATE(1551)] = 49908, - [SMALL_STATE(1552)] = 49925, - [SMALL_STATE(1553)] = 49942, - [SMALL_STATE(1554)] = 49961, - [SMALL_STATE(1555)] = 49978, - [SMALL_STATE(1556)] = 49997, - [SMALL_STATE(1557)] = 50016, - [SMALL_STATE(1558)] = 50035, - [SMALL_STATE(1559)] = 50054, - [SMALL_STATE(1560)] = 50073, - [SMALL_STATE(1561)] = 50090, - [SMALL_STATE(1562)] = 50107, - [SMALL_STATE(1563)] = 50124, - [SMALL_STATE(1564)] = 50141, - [SMALL_STATE(1565)] = 50158, - [SMALL_STATE(1566)] = 50177, - [SMALL_STATE(1567)] = 50196, - [SMALL_STATE(1568)] = 50213, - [SMALL_STATE(1569)] = 50232, - [SMALL_STATE(1570)] = 50249, - [SMALL_STATE(1571)] = 50266, - [SMALL_STATE(1572)] = 50285, - [SMALL_STATE(1573)] = 50304, - [SMALL_STATE(1574)] = 50323, - [SMALL_STATE(1575)] = 50342, - [SMALL_STATE(1576)] = 50359, - [SMALL_STATE(1577)] = 50376, - [SMALL_STATE(1578)] = 50395, - [SMALL_STATE(1579)] = 50412, - [SMALL_STATE(1580)] = 50429, - [SMALL_STATE(1581)] = 50448, - [SMALL_STATE(1582)] = 50463, - [SMALL_STATE(1583)] = 50480, - [SMALL_STATE(1584)] = 50497, - [SMALL_STATE(1585)] = 50516, - [SMALL_STATE(1586)] = 50533, - [SMALL_STATE(1587)] = 50548, - [SMALL_STATE(1588)] = 50565, - [SMALL_STATE(1589)] = 50584, - [SMALL_STATE(1590)] = 50601, - [SMALL_STATE(1591)] = 50618, - [SMALL_STATE(1592)] = 50635, - [SMALL_STATE(1593)] = 50652, - [SMALL_STATE(1594)] = 50667, - [SMALL_STATE(1595)] = 50684, - [SMALL_STATE(1596)] = 50703, - [SMALL_STATE(1597)] = 50722, - [SMALL_STATE(1598)] = 50739, - [SMALL_STATE(1599)] = 50756, - [SMALL_STATE(1600)] = 50775, - [SMALL_STATE(1601)] = 50792, - [SMALL_STATE(1602)] = 50809, - [SMALL_STATE(1603)] = 50826, - [SMALL_STATE(1604)] = 50843, - [SMALL_STATE(1605)] = 50862, - [SMALL_STATE(1606)] = 50879, - [SMALL_STATE(1607)] = 50896, - [SMALL_STATE(1608)] = 50911, - [SMALL_STATE(1609)] = 50928, - [SMALL_STATE(1610)] = 50945, - [SMALL_STATE(1611)] = 50962, - [SMALL_STATE(1612)] = 50981, - [SMALL_STATE(1613)] = 50998, - [SMALL_STATE(1614)] = 51017, - [SMALL_STATE(1615)] = 51036, - [SMALL_STATE(1616)] = 51055, - [SMALL_STATE(1617)] = 51072, - [SMALL_STATE(1618)] = 51089, - [SMALL_STATE(1619)] = 51106, - [SMALL_STATE(1620)] = 51125, - [SMALL_STATE(1621)] = 51141, - [SMALL_STATE(1622)] = 51157, - [SMALL_STATE(1623)] = 51173, - [SMALL_STATE(1624)] = 51187, - [SMALL_STATE(1625)] = 51201, - [SMALL_STATE(1626)] = 51217, - [SMALL_STATE(1627)] = 51233, - [SMALL_STATE(1628)] = 51249, - [SMALL_STATE(1629)] = 51265, - [SMALL_STATE(1630)] = 51281, - [SMALL_STATE(1631)] = 51295, - [SMALL_STATE(1632)] = 51311, - [SMALL_STATE(1633)] = 51327, - [SMALL_STATE(1634)] = 51343, - [SMALL_STATE(1635)] = 51359, - [SMALL_STATE(1636)] = 51373, - [SMALL_STATE(1637)] = 51389, - [SMALL_STATE(1638)] = 51405, - [SMALL_STATE(1639)] = 51419, - [SMALL_STATE(1640)] = 51435, - [SMALL_STATE(1641)] = 51451, - [SMALL_STATE(1642)] = 51465, - [SMALL_STATE(1643)] = 51481, - [SMALL_STATE(1644)] = 51497, - [SMALL_STATE(1645)] = 51513, - [SMALL_STATE(1646)] = 51529, - [SMALL_STATE(1647)] = 51545, - [SMALL_STATE(1648)] = 51559, - [SMALL_STATE(1649)] = 51575, - [SMALL_STATE(1650)] = 51591, - [SMALL_STATE(1651)] = 51607, - [SMALL_STATE(1652)] = 51623, - [SMALL_STATE(1653)] = 51637, - [SMALL_STATE(1654)] = 51651, - [SMALL_STATE(1655)] = 51667, - [SMALL_STATE(1656)] = 51681, - [SMALL_STATE(1657)] = 51695, - [SMALL_STATE(1658)] = 51711, - [SMALL_STATE(1659)] = 51727, - [SMALL_STATE(1660)] = 51741, - [SMALL_STATE(1661)] = 51757, - [SMALL_STATE(1662)] = 51771, - [SMALL_STATE(1663)] = 51787, - [SMALL_STATE(1664)] = 51803, - [SMALL_STATE(1665)] = 51819, - [SMALL_STATE(1666)] = 51833, - [SMALL_STATE(1667)] = 51849, - [SMALL_STATE(1668)] = 51863, - [SMALL_STATE(1669)] = 51877, - [SMALL_STATE(1670)] = 51891, - [SMALL_STATE(1671)] = 51907, - [SMALL_STATE(1672)] = 51921, - [SMALL_STATE(1673)] = 51935, - [SMALL_STATE(1674)] = 51949, - [SMALL_STATE(1675)] = 51963, - [SMALL_STATE(1676)] = 51977, - [SMALL_STATE(1677)] = 51993, - [SMALL_STATE(1678)] = 52007, - [SMALL_STATE(1679)] = 52023, - [SMALL_STATE(1680)] = 52037, - [SMALL_STATE(1681)] = 52053, - [SMALL_STATE(1682)] = 52067, - [SMALL_STATE(1683)] = 52083, - [SMALL_STATE(1684)] = 52099, - [SMALL_STATE(1685)] = 52113, - [SMALL_STATE(1686)] = 52129, - [SMALL_STATE(1687)] = 52145, - [SMALL_STATE(1688)] = 52161, - [SMALL_STATE(1689)] = 52177, - [SMALL_STATE(1690)] = 52193, - [SMALL_STATE(1691)] = 52209, - [SMALL_STATE(1692)] = 52225, - [SMALL_STATE(1693)] = 52239, - [SMALL_STATE(1694)] = 52255, - [SMALL_STATE(1695)] = 52269, - [SMALL_STATE(1696)] = 52285, - [SMALL_STATE(1697)] = 52301, - [SMALL_STATE(1698)] = 52317, - [SMALL_STATE(1699)] = 52331, - [SMALL_STATE(1700)] = 52347, - [SMALL_STATE(1701)] = 52363, - [SMALL_STATE(1702)] = 52379, - [SMALL_STATE(1703)] = 52393, - [SMALL_STATE(1704)] = 52407, - [SMALL_STATE(1705)] = 52423, - [SMALL_STATE(1706)] = 52439, - [SMALL_STATE(1707)] = 52455, - [SMALL_STATE(1708)] = 52469, - [SMALL_STATE(1709)] = 52485, - [SMALL_STATE(1710)] = 52501, - [SMALL_STATE(1711)] = 52517, - [SMALL_STATE(1712)] = 52533, - [SMALL_STATE(1713)] = 52547, - [SMALL_STATE(1714)] = 52561, - [SMALL_STATE(1715)] = 52575, - [SMALL_STATE(1716)] = 52589, - [SMALL_STATE(1717)] = 52603, - [SMALL_STATE(1718)] = 52617, - [SMALL_STATE(1719)] = 52631, - [SMALL_STATE(1720)] = 52645, - [SMALL_STATE(1721)] = 52659, - [SMALL_STATE(1722)] = 52673, - [SMALL_STATE(1723)] = 52689, - [SMALL_STATE(1724)] = 52703, - [SMALL_STATE(1725)] = 52719, - [SMALL_STATE(1726)] = 52735, - [SMALL_STATE(1727)] = 52751, - [SMALL_STATE(1728)] = 52765, - [SMALL_STATE(1729)] = 52781, - [SMALL_STATE(1730)] = 52797, - [SMALL_STATE(1731)] = 52813, - [SMALL_STATE(1732)] = 52829, - [SMALL_STATE(1733)] = 52843, - [SMALL_STATE(1734)] = 52859, - [SMALL_STATE(1735)] = 52873, - [SMALL_STATE(1736)] = 52887, - [SMALL_STATE(1737)] = 52901, - [SMALL_STATE(1738)] = 52915, - [SMALL_STATE(1739)] = 52931, - [SMALL_STATE(1740)] = 52947, - [SMALL_STATE(1741)] = 52963, - [SMALL_STATE(1742)] = 52979, - [SMALL_STATE(1743)] = 52993, - [SMALL_STATE(1744)] = 53009, - [SMALL_STATE(1745)] = 53025, - [SMALL_STATE(1746)] = 53039, - [SMALL_STATE(1747)] = 53053, - [SMALL_STATE(1748)] = 53067, - [SMALL_STATE(1749)] = 53081, - [SMALL_STATE(1750)] = 53097, - [SMALL_STATE(1751)] = 53111, - [SMALL_STATE(1752)] = 53125, - [SMALL_STATE(1753)] = 53139, - [SMALL_STATE(1754)] = 53155, - [SMALL_STATE(1755)] = 53169, - [SMALL_STATE(1756)] = 53183, - [SMALL_STATE(1757)] = 53197, - [SMALL_STATE(1758)] = 53211, - [SMALL_STATE(1759)] = 53225, - [SMALL_STATE(1760)] = 53239, - [SMALL_STATE(1761)] = 53255, - [SMALL_STATE(1762)] = 53269, - [SMALL_STATE(1763)] = 53285, - [SMALL_STATE(1764)] = 53301, - [SMALL_STATE(1765)] = 53317, - [SMALL_STATE(1766)] = 53331, - [SMALL_STATE(1767)] = 53345, - [SMALL_STATE(1768)] = 53359, - [SMALL_STATE(1769)] = 53375, - [SMALL_STATE(1770)] = 53391, - [SMALL_STATE(1771)] = 53405, - [SMALL_STATE(1772)] = 53421, - [SMALL_STATE(1773)] = 53435, - [SMALL_STATE(1774)] = 53451, - [SMALL_STATE(1775)] = 53465, - [SMALL_STATE(1776)] = 53481, - [SMALL_STATE(1777)] = 53495, - [SMALL_STATE(1778)] = 53511, - [SMALL_STATE(1779)] = 53525, - [SMALL_STATE(1780)] = 53541, - [SMALL_STATE(1781)] = 53557, - [SMALL_STATE(1782)] = 53573, - [SMALL_STATE(1783)] = 53587, - [SMALL_STATE(1784)] = 53601, - [SMALL_STATE(1785)] = 53617, - [SMALL_STATE(1786)] = 53633, - [SMALL_STATE(1787)] = 53649, - [SMALL_STATE(1788)] = 53665, - [SMALL_STATE(1789)] = 53681, - [SMALL_STATE(1790)] = 53697, - [SMALL_STATE(1791)] = 53711, - [SMALL_STATE(1792)] = 53727, - [SMALL_STATE(1793)] = 53743, - [SMALL_STATE(1794)] = 53757, - [SMALL_STATE(1795)] = 53773, - [SMALL_STATE(1796)] = 53789, - [SMALL_STATE(1797)] = 53803, - [SMALL_STATE(1798)] = 53817, - [SMALL_STATE(1799)] = 53833, - [SMALL_STATE(1800)] = 53847, - [SMALL_STATE(1801)] = 53860, - [SMALL_STATE(1802)] = 53873, - [SMALL_STATE(1803)] = 53886, - [SMALL_STATE(1804)] = 53899, - [SMALL_STATE(1805)] = 53912, - [SMALL_STATE(1806)] = 53925, - [SMALL_STATE(1807)] = 53938, - [SMALL_STATE(1808)] = 53951, - [SMALL_STATE(1809)] = 53964, - [SMALL_STATE(1810)] = 53977, - [SMALL_STATE(1811)] = 53990, - [SMALL_STATE(1812)] = 54003, - [SMALL_STATE(1813)] = 54016, - [SMALL_STATE(1814)] = 54029, - [SMALL_STATE(1815)] = 54042, - [SMALL_STATE(1816)] = 54055, - [SMALL_STATE(1817)] = 54068, - [SMALL_STATE(1818)] = 54081, - [SMALL_STATE(1819)] = 54094, - [SMALL_STATE(1820)] = 54107, - [SMALL_STATE(1821)] = 54120, - [SMALL_STATE(1822)] = 54133, - [SMALL_STATE(1823)] = 54146, - [SMALL_STATE(1824)] = 54159, - [SMALL_STATE(1825)] = 54172, - [SMALL_STATE(1826)] = 54185, - [SMALL_STATE(1827)] = 54198, - [SMALL_STATE(1828)] = 54211, - [SMALL_STATE(1829)] = 54224, - [SMALL_STATE(1830)] = 54237, - [SMALL_STATE(1831)] = 54250, - [SMALL_STATE(1832)] = 54263, - [SMALL_STATE(1833)] = 54276, - [SMALL_STATE(1834)] = 54289, - [SMALL_STATE(1835)] = 54302, - [SMALL_STATE(1836)] = 54315, - [SMALL_STATE(1837)] = 54328, - [SMALL_STATE(1838)] = 54341, - [SMALL_STATE(1839)] = 54354, - [SMALL_STATE(1840)] = 54367, - [SMALL_STATE(1841)] = 54380, - [SMALL_STATE(1842)] = 54393, - [SMALL_STATE(1843)] = 54406, - [SMALL_STATE(1844)] = 54419, - [SMALL_STATE(1845)] = 54432, - [SMALL_STATE(1846)] = 54445, - [SMALL_STATE(1847)] = 54458, - [SMALL_STATE(1848)] = 54471, - [SMALL_STATE(1849)] = 54484, - [SMALL_STATE(1850)] = 54497, - [SMALL_STATE(1851)] = 54510, - [SMALL_STATE(1852)] = 54523, - [SMALL_STATE(1853)] = 54536, - [SMALL_STATE(1854)] = 54549, - [SMALL_STATE(1855)] = 54562, - [SMALL_STATE(1856)] = 54575, - [SMALL_STATE(1857)] = 54588, - [SMALL_STATE(1858)] = 54601, - [SMALL_STATE(1859)] = 54614, - [SMALL_STATE(1860)] = 54627, - [SMALL_STATE(1861)] = 54640, - [SMALL_STATE(1862)] = 54653, - [SMALL_STATE(1863)] = 54666, - [SMALL_STATE(1864)] = 54679, - [SMALL_STATE(1865)] = 54692, - [SMALL_STATE(1866)] = 54705, - [SMALL_STATE(1867)] = 54718, - [SMALL_STATE(1868)] = 54731, - [SMALL_STATE(1869)] = 54744, - [SMALL_STATE(1870)] = 54757, - [SMALL_STATE(1871)] = 54770, - [SMALL_STATE(1872)] = 54783, - [SMALL_STATE(1873)] = 54796, - [SMALL_STATE(1874)] = 54809, - [SMALL_STATE(1875)] = 54822, - [SMALL_STATE(1876)] = 54835, - [SMALL_STATE(1877)] = 54848, - [SMALL_STATE(1878)] = 54861, - [SMALL_STATE(1879)] = 54874, - [SMALL_STATE(1880)] = 54887, - [SMALL_STATE(1881)] = 54900, - [SMALL_STATE(1882)] = 54913, - [SMALL_STATE(1883)] = 54926, - [SMALL_STATE(1884)] = 54939, - [SMALL_STATE(1885)] = 54952, - [SMALL_STATE(1886)] = 54965, - [SMALL_STATE(1887)] = 54978, - [SMALL_STATE(1888)] = 54991, - [SMALL_STATE(1889)] = 55004, - [SMALL_STATE(1890)] = 55017, - [SMALL_STATE(1891)] = 55030, - [SMALL_STATE(1892)] = 55043, - [SMALL_STATE(1893)] = 55056, - [SMALL_STATE(1894)] = 55069, - [SMALL_STATE(1895)] = 55082, - [SMALL_STATE(1896)] = 55095, - [SMALL_STATE(1897)] = 55108, - [SMALL_STATE(1898)] = 55121, - [SMALL_STATE(1899)] = 55134, - [SMALL_STATE(1900)] = 55147, - [SMALL_STATE(1901)] = 55160, - [SMALL_STATE(1902)] = 55173, - [SMALL_STATE(1903)] = 55186, - [SMALL_STATE(1904)] = 55199, - [SMALL_STATE(1905)] = 55212, - [SMALL_STATE(1906)] = 55225, - [SMALL_STATE(1907)] = 55238, - [SMALL_STATE(1908)] = 55251, - [SMALL_STATE(1909)] = 55264, - [SMALL_STATE(1910)] = 55277, - [SMALL_STATE(1911)] = 55290, - [SMALL_STATE(1912)] = 55303, - [SMALL_STATE(1913)] = 55316, - [SMALL_STATE(1914)] = 55329, - [SMALL_STATE(1915)] = 55342, - [SMALL_STATE(1916)] = 55355, - [SMALL_STATE(1917)] = 55368, - [SMALL_STATE(1918)] = 55381, - [SMALL_STATE(1919)] = 55394, - [SMALL_STATE(1920)] = 55407, - [SMALL_STATE(1921)] = 55420, - [SMALL_STATE(1922)] = 55433, - [SMALL_STATE(1923)] = 55446, - [SMALL_STATE(1924)] = 55459, - [SMALL_STATE(1925)] = 55472, - [SMALL_STATE(1926)] = 55485, - [SMALL_STATE(1927)] = 55498, - [SMALL_STATE(1928)] = 55511, - [SMALL_STATE(1929)] = 55524, - [SMALL_STATE(1930)] = 55537, - [SMALL_STATE(1931)] = 55550, - [SMALL_STATE(1932)] = 55563, - [SMALL_STATE(1933)] = 55576, - [SMALL_STATE(1934)] = 55589, - [SMALL_STATE(1935)] = 55602, - [SMALL_STATE(1936)] = 55615, - [SMALL_STATE(1937)] = 55628, - [SMALL_STATE(1938)] = 55641, - [SMALL_STATE(1939)] = 55654, - [SMALL_STATE(1940)] = 55667, - [SMALL_STATE(1941)] = 55680, - [SMALL_STATE(1942)] = 55693, - [SMALL_STATE(1943)] = 55706, - [SMALL_STATE(1944)] = 55719, - [SMALL_STATE(1945)] = 55732, - [SMALL_STATE(1946)] = 55745, - [SMALL_STATE(1947)] = 55758, - [SMALL_STATE(1948)] = 55771, - [SMALL_STATE(1949)] = 55784, - [SMALL_STATE(1950)] = 55797, - [SMALL_STATE(1951)] = 55810, - [SMALL_STATE(1952)] = 55823, - [SMALL_STATE(1953)] = 55836, - [SMALL_STATE(1954)] = 55849, - [SMALL_STATE(1955)] = 55862, - [SMALL_STATE(1956)] = 55866, + [SMALL_STATE(526)] = 0, + [SMALL_STATE(527)] = 79, + [SMALL_STATE(528)] = 158, + [SMALL_STATE(529)] = 237, + [SMALL_STATE(530)] = 316, + [SMALL_STATE(531)] = 395, + [SMALL_STATE(532)] = 482, + [SMALL_STATE(533)] = 556, + [SMALL_STATE(534)] = 630, + [SMALL_STATE(535)] = 704, + [SMALL_STATE(536)] = 778, + [SMALL_STATE(537)] = 852, + [SMALL_STATE(538)] = 926, + [SMALL_STATE(539)] = 1000, + [SMALL_STATE(540)] = 1074, + [SMALL_STATE(541)] = 1148, + [SMALL_STATE(542)] = 1222, + [SMALL_STATE(543)] = 1296, + [SMALL_STATE(544)] = 1370, + [SMALL_STATE(545)] = 1444, + [SMALL_STATE(546)] = 1529, + [SMALL_STATE(547)] = 1610, + [SMALL_STATE(548)] = 1694, + [SMALL_STATE(549)] = 1777, + [SMALL_STATE(550)] = 1912, + [SMALL_STATE(551)] = 1995, + [SMALL_STATE(552)] = 2130, + [SMALL_STATE(553)] = 2205, + [SMALL_STATE(554)] = 2280, + [SMALL_STATE(555)] = 2415, + [SMALL_STATE(556)] = 2490, + [SMALL_STATE(557)] = 2579, + [SMALL_STATE(558)] = 2654, + [SMALL_STATE(559)] = 2733, + [SMALL_STATE(560)] = 2816, + [SMALL_STATE(561)] = 2905, + [SMALL_STATE(562)] = 2980, + [SMALL_STATE(563)] = 3115, + [SMALL_STATE(564)] = 3203, + [SMALL_STATE(565)] = 3273, + [SMALL_STATE(566)] = 3343, + [SMALL_STATE(567)] = 3413, + [SMALL_STATE(568)] = 3483, + [SMALL_STATE(569)] = 3553, + [SMALL_STATE(570)] = 3623, + [SMALL_STATE(571)] = 3693, + [SMALL_STATE(572)] = 3777, + [SMALL_STATE(573)] = 3847, + [SMALL_STATE(574)] = 3917, + [SMALL_STATE(575)] = 3987, + [SMALL_STATE(576)] = 4057, + [SMALL_STATE(577)] = 4141, + [SMALL_STATE(578)] = 4211, + [SMALL_STATE(579)] = 4281, + [SMALL_STATE(580)] = 4351, + [SMALL_STATE(581)] = 4433, + [SMALL_STATE(582)] = 4503, + [SMALL_STATE(583)] = 4573, + [SMALL_STATE(584)] = 4651, + [SMALL_STATE(585)] = 4734, + [SMALL_STATE(586)] = 4811, + [SMALL_STATE(587)] = 4888, + [SMALL_STATE(588)] = 4965, + [SMALL_STATE(589)] = 5048, + [SMALL_STATE(590)] = 5176, + [SMALL_STATE(591)] = 5254, + [SMALL_STATE(592)] = 5382, + [SMALL_STATE(593)] = 5510, + [SMALL_STATE(594)] = 5588, + [SMALL_STATE(595)] = 5670, + [SMALL_STATE(596)] = 5746, + [SMALL_STATE(597)] = 5874, + [SMALL_STATE(598)] = 5940, + [SMALL_STATE(599)] = 6009, + [SMALL_STATE(600)] = 6076, + [SMALL_STATE(601)] = 6142, + [SMALL_STATE(602)] = 6206, + [SMALL_STATE(603)] = 6266, + [SMALL_STATE(604)] = 6326, + [SMALL_STATE(605)] = 6391, + [SMALL_STATE(606)] = 6456, + [SMALL_STATE(607)] = 6519, + [SMALL_STATE(608)] = 6582, + [SMALL_STATE(609)] = 6647, + [SMALL_STATE(610)] = 6710, + [SMALL_STATE(611)] = 6773, + [SMALL_STATE(612)] = 6838, + [SMALL_STATE(613)] = 6901, + [SMALL_STATE(614)] = 6964, + [SMALL_STATE(615)] = 7029, + [SMALL_STATE(616)] = 7094, + [SMALL_STATE(617)] = 7157, + [SMALL_STATE(618)] = 7220, + [SMALL_STATE(619)] = 7283, + [SMALL_STATE(620)] = 7344, + [SMALL_STATE(621)] = 7405, + [SMALL_STATE(622)] = 7468, + [SMALL_STATE(623)] = 7529, + [SMALL_STATE(624)] = 7592, + [SMALL_STATE(625)] = 7653, + [SMALL_STATE(626)] = 7714, + [SMALL_STATE(627)] = 7775, + [SMALL_STATE(628)] = 7838, + [SMALL_STATE(629)] = 7903, + [SMALL_STATE(630)] = 7968, + [SMALL_STATE(631)] = 8033, + [SMALL_STATE(632)] = 8091, + [SMALL_STATE(633)] = 8149, + [SMALL_STATE(634)] = 8207, + [SMALL_STATE(635)] = 8265, + [SMALL_STATE(636)] = 8323, + [SMALL_STATE(637)] = 8381, + [SMALL_STATE(638)] = 8439, + [SMALL_STATE(639)] = 8497, + [SMALL_STATE(640)] = 8555, + [SMALL_STATE(641)] = 8613, + [SMALL_STATE(642)] = 8673, + [SMALL_STATE(643)] = 8731, + [SMALL_STATE(644)] = 8789, + [SMALL_STATE(645)] = 8847, + [SMALL_STATE(646)] = 8905, + [SMALL_STATE(647)] = 8963, + [SMALL_STATE(648)] = 9023, + [SMALL_STATE(649)] = 9081, + [SMALL_STATE(650)] = 9139, + [SMALL_STATE(651)] = 9197, + [SMALL_STATE(652)] = 9255, + [SMALL_STATE(653)] = 9313, + [SMALL_STATE(654)] = 9371, + [SMALL_STATE(655)] = 9429, + [SMALL_STATE(656)] = 9487, + [SMALL_STATE(657)] = 9544, + [SMALL_STATE(658)] = 9613, + [SMALL_STATE(659)] = 9676, + [SMALL_STATE(660)] = 9737, + [SMALL_STATE(661)] = 9796, + [SMALL_STATE(662)] = 9855, + [SMALL_STATE(663)] = 9916, + [SMALL_STATE(664)] = 9973, + [SMALL_STATE(665)] = 10032, + [SMALL_STATE(666)] = 10091, + [SMALL_STATE(667)] = 10160, + [SMALL_STATE(668)] = 10225, + [SMALL_STATE(669)] = 10329, + [SMALL_STATE(670)] = 10391, + [SMALL_STATE(671)] = 10495, + [SMALL_STATE(672)] = 10554, + [SMALL_STATE(673)] = 10615, + [SMALL_STATE(674)] = 10672, + [SMALL_STATE(675)] = 10729, + [SMALL_STATE(676)] = 10786, + [SMALL_STATE(677)] = 10847, + [SMALL_STATE(678)] = 10908, + [SMALL_STATE(679)] = 10969, + [SMALL_STATE(680)] = 11030, + [SMALL_STATE(681)] = 11089, + [SMALL_STATE(682)] = 11148, + [SMALL_STATE(683)] = 11209, + [SMALL_STATE(684)] = 11266, + [SMALL_STATE(685)] = 11323, + [SMALL_STATE(686)] = 11378, + [SMALL_STATE(687)] = 11439, + [SMALL_STATE(688)] = 11500, + [SMALL_STATE(689)] = 11555, + [SMALL_STATE(690)] = 11614, + [SMALL_STATE(691)] = 11669, + [SMALL_STATE(692)] = 11726, + [SMALL_STATE(693)] = 11785, + [SMALL_STATE(694)] = 11844, + [SMALL_STATE(695)] = 11903, + [SMALL_STATE(696)] = 11958, + [SMALL_STATE(697)] = 12017, + [SMALL_STATE(698)] = 12074, + [SMALL_STATE(699)] = 12135, + [SMALL_STATE(700)] = 12194, + [SMALL_STATE(701)] = 12255, + [SMALL_STATE(702)] = 12316, + [SMALL_STATE(703)] = 12377, + [SMALL_STATE(704)] = 12436, + [SMALL_STATE(705)] = 12495, + [SMALL_STATE(706)] = 12554, + [SMALL_STATE(707)] = 12609, + [SMALL_STATE(708)] = 12663, + [SMALL_STATE(709)] = 12717, + [SMALL_STATE(710)] = 12771, + [SMALL_STATE(711)] = 12825, + [SMALL_STATE(712)] = 12879, + [SMALL_STATE(713)] = 12933, + [SMALL_STATE(714)] = 12987, + [SMALL_STATE(715)] = 13041, + [SMALL_STATE(716)] = 13095, + [SMALL_STATE(717)] = 13149, + [SMALL_STATE(718)] = 13203, + [SMALL_STATE(719)] = 13257, + [SMALL_STATE(720)] = 13311, + [SMALL_STATE(721)] = 13367, + [SMALL_STATE(722)] = 13421, + [SMALL_STATE(723)] = 13475, + [SMALL_STATE(724)] = 13529, + [SMALL_STATE(725)] = 13583, + [SMALL_STATE(726)] = 13637, + [SMALL_STATE(727)] = 13691, + [SMALL_STATE(728)] = 13745, + [SMALL_STATE(729)] = 13803, + [SMALL_STATE(730)] = 13859, + [SMALL_STATE(731)] = 13913, + [SMALL_STATE(732)] = 13969, + [SMALL_STATE(733)] = 14023, + [SMALL_STATE(734)] = 14078, + [SMALL_STATE(735)] = 14133, + [SMALL_STATE(736)] = 14188, + [SMALL_STATE(737)] = 14243, + [SMALL_STATE(738)] = 14295, + [SMALL_STATE(739)] = 14387, + [SMALL_STATE(740)] = 14439, + [SMALL_STATE(741)] = 14491, + [SMALL_STATE(742)] = 14543, + [SMALL_STATE(743)] = 14595, + [SMALL_STATE(744)] = 14647, + [SMALL_STATE(745)] = 14699, + [SMALL_STATE(746)] = 14751, + [SMALL_STATE(747)] = 14803, + [SMALL_STATE(748)] = 14855, + [SMALL_STATE(749)] = 14907, + [SMALL_STATE(750)] = 14959, + [SMALL_STATE(751)] = 15011, + [SMALL_STATE(752)] = 15063, + [SMALL_STATE(753)] = 15115, + [SMALL_STATE(754)] = 15167, + [SMALL_STATE(755)] = 15219, + [SMALL_STATE(756)] = 15271, + [SMALL_STATE(757)] = 15323, + [SMALL_STATE(758)] = 15375, + [SMALL_STATE(759)] = 15427, + [SMALL_STATE(760)] = 15479, + [SMALL_STATE(761)] = 15571, + [SMALL_STATE(762)] = 15661, + [SMALL_STATE(763)] = 15713, + [SMALL_STATE(764)] = 15765, + [SMALL_STATE(765)] = 15819, + [SMALL_STATE(766)] = 15871, + [SMALL_STATE(767)] = 15923, + [SMALL_STATE(768)] = 15975, + [SMALL_STATE(769)] = 16027, + [SMALL_STATE(770)] = 16079, + [SMALL_STATE(771)] = 16131, + [SMALL_STATE(772)] = 16183, + [SMALL_STATE(773)] = 16235, + [SMALL_STATE(774)] = 16287, + [SMALL_STATE(775)] = 16339, + [SMALL_STATE(776)] = 16390, + [SMALL_STATE(777)] = 16441, + [SMALL_STATE(778)] = 16536, + [SMALL_STATE(779)] = 16631, + [SMALL_STATE(780)] = 16709, + [SMALL_STATE(781)] = 16781, + [SMALL_STATE(782)] = 16865, + [SMALL_STATE(783)] = 16949, + [SMALL_STATE(784)] = 17035, + [SMALL_STATE(785)] = 17119, + [SMALL_STATE(786)] = 17203, + [SMALL_STATE(787)] = 17287, + [SMALL_STATE(788)] = 17371, + [SMALL_STATE(789)] = 17423, + [SMALL_STATE(790)] = 17507, + [SMALL_STATE(791)] = 17573, + [SMALL_STATE(792)] = 17643, + [SMALL_STATE(793)] = 17697, + [SMALL_STATE(794)] = 17775, + [SMALL_STATE(795)] = 17853, + [SMALL_STATE(796)] = 17935, + [SMALL_STATE(797)] = 18025, + [SMALL_STATE(798)] = 18105, + [SMALL_STATE(799)] = 18179, + [SMALL_STATE(800)] = 18269, + [SMALL_STATE(801)] = 18353, + [SMALL_STATE(802)] = 18437, + [SMALL_STATE(803)] = 18521, + [SMALL_STATE(804)] = 18589, + [SMALL_STATE(805)] = 18651, + [SMALL_STATE(806)] = 18743, + [SMALL_STATE(807)] = 18801, + [SMALL_STATE(808)] = 18857, + [SMALL_STATE(809)] = 18935, + [SMALL_STATE(810)] = 19013, + [SMALL_STATE(811)] = 19105, + [SMALL_STATE(812)] = 19157, + [SMALL_STATE(813)] = 19241, + [SMALL_STATE(814)] = 19325, + [SMALL_STATE(815)] = 19409, + [SMALL_STATE(816)] = 19493, + [SMALL_STATE(817)] = 19577, + [SMALL_STATE(818)] = 19669, + [SMALL_STATE(819)] = 19753, + [SMALL_STATE(820)] = 19837, + [SMALL_STATE(821)] = 19915, + [SMALL_STATE(822)] = 20007, + [SMALL_STATE(823)] = 20085, + [SMALL_STATE(824)] = 20169, + [SMALL_STATE(825)] = 20248, + [SMALL_STATE(826)] = 20321, + [SMALL_STATE(827)] = 20404, + [SMALL_STATE(828)] = 20491, + [SMALL_STATE(829)] = 20562, + [SMALL_STATE(830)] = 20629, + [SMALL_STATE(831)] = 20690, + [SMALL_STATE(832)] = 20773, + [SMALL_STATE(833)] = 20856, + [SMALL_STATE(834)] = 20937, + [SMALL_STATE(835)] = 21026, + [SMALL_STATE(836)] = 21083, + [SMALL_STATE(837)] = 21138, + [SMALL_STATE(838)] = 21215, + [SMALL_STATE(839)] = 21266, + [SMALL_STATE(840)] = 21343, + [SMALL_STATE(841)] = 21420, + [SMALL_STATE(842)] = 21473, + [SMALL_STATE(843)] = 21560, + [SMALL_STATE(844)] = 21637, + [SMALL_STATE(845)] = 21688, + [SMALL_STATE(846)] = 21757, + [SMALL_STATE(847)] = 21822, + [SMALL_STATE(848)] = 21905, + [SMALL_STATE(849)] = 21988, + [SMALL_STATE(850)] = 22071, + [SMALL_STATE(851)] = 22154, + [SMALL_STATE(852)] = 22237, + [SMALL_STATE(853)] = 22314, + [SMALL_STATE(854)] = 22397, + [SMALL_STATE(855)] = 22474, + [SMALL_STATE(856)] = 22557, + [SMALL_STATE(857)] = 22644, + [SMALL_STATE(858)] = 22727, + [SMALL_STATE(859)] = 22810, + [SMALL_STATE(860)] = 22893, + [SMALL_STATE(861)] = 22976, + [SMALL_STATE(862)] = 23059, + [SMALL_STATE(863)] = 23144, + [SMALL_STATE(864)] = 23221, + [SMALL_STATE(865)] = 23304, + [SMALL_STATE(866)] = 23387, + [SMALL_STATE(867)] = 23470, + [SMALL_STATE(868)] = 23552, + [SMALL_STATE(869)] = 23600, + [SMALL_STATE(870)] = 23648, + [SMALL_STATE(871)] = 23730, + [SMALL_STATE(872)] = 23800, + [SMALL_STATE(873)] = 23848, + [SMALL_STATE(874)] = 23932, + [SMALL_STATE(875)] = 23980, + [SMALL_STATE(876)] = 24028, + [SMALL_STATE(877)] = 24076, + [SMALL_STATE(878)] = 24130, + [SMALL_STATE(879)] = 24202, + [SMALL_STATE(880)] = 24250, + [SMALL_STATE(881)] = 24298, + [SMALL_STATE(882)] = 24380, + [SMALL_STATE(883)] = 24428, + [SMALL_STATE(884)] = 24492, + [SMALL_STATE(885)] = 24574, + [SMALL_STATE(886)] = 24658, + [SMALL_STATE(887)] = 24734, + [SMALL_STATE(888)] = 24782, + [SMALL_STATE(889)] = 24830, + [SMALL_STATE(890)] = 24878, + [SMALL_STATE(891)] = 24962, + [SMALL_STATE(892)] = 25044, + [SMALL_STATE(893)] = 25128, + [SMALL_STATE(894)] = 25176, + [SMALL_STATE(895)] = 25242, + [SMALL_STATE(896)] = 25326, + [SMALL_STATE(897)] = 25374, + [SMALL_STATE(898)] = 25434, + [SMALL_STATE(899)] = 25482, + [SMALL_STATE(900)] = 25538, + [SMALL_STATE(901)] = 25614, + [SMALL_STATE(902)] = 25690, + [SMALL_STATE(903)] = 25772, + [SMALL_STATE(904)] = 25848, + [SMALL_STATE(905)] = 25896, + [SMALL_STATE(906)] = 25944, + [SMALL_STATE(907)] = 26026, + [SMALL_STATE(908)] = 26108, + [SMALL_STATE(909)] = 26156, + [SMALL_STATE(910)] = 26224, + [SMALL_STATE(911)] = 26306, + [SMALL_STATE(912)] = 26390, + [SMALL_STATE(913)] = 26438, + [SMALL_STATE(914)] = 26486, + [SMALL_STATE(915)] = 26570, + [SMALL_STATE(916)] = 26648, + [SMALL_STATE(917)] = 26732, + [SMALL_STATE(918)] = 26780, + [SMALL_STATE(919)] = 26832, + [SMALL_STATE(920)] = 26882, + [SMALL_STATE(921)] = 26930, + [SMALL_STATE(922)] = 27006, + [SMALL_STATE(923)] = 27090, + [SMALL_STATE(924)] = 27138, + [SMALL_STATE(925)] = 27186, + [SMALL_STATE(926)] = 27270, + [SMALL_STATE(927)] = 27352, + [SMALL_STATE(928)] = 27428, + [SMALL_STATE(929)] = 27476, + [SMALL_STATE(930)] = 27524, + [SMALL_STATE(931)] = 27572, + [SMALL_STATE(932)] = 27654, + [SMALL_STATE(933)] = 27736, + [SMALL_STATE(934)] = 27818, + [SMALL_STATE(935)] = 27866, + [SMALL_STATE(936)] = 27914, + [SMALL_STATE(937)] = 27996, + [SMALL_STATE(938)] = 28080, + [SMALL_STATE(939)] = 28128, + [SMALL_STATE(940)] = 28178, + [SMALL_STATE(941)] = 28226, + [SMALL_STATE(942)] = 28274, + [SMALL_STATE(943)] = 28350, + [SMALL_STATE(944)] = 28398, + [SMALL_STATE(945)] = 28448, + [SMALL_STATE(946)] = 28528, + [SMALL_STATE(947)] = 28576, + [SMALL_STATE(948)] = 28660, + [SMALL_STATE(949)] = 28744, + [SMALL_STATE(950)] = 28792, + [SMALL_STATE(951)] = 28874, + [SMALL_STATE(952)] = 28956, + [SMALL_STATE(953)] = 29038, + [SMALL_STATE(954)] = 29120, + [SMALL_STATE(955)] = 29168, + [SMALL_STATE(956)] = 29227, + [SMALL_STATE(957)] = 29308, + [SMALL_STATE(958)] = 29383, + [SMALL_STATE(959)] = 29464, + [SMALL_STATE(960)] = 29545, + [SMALL_STATE(961)] = 29626, + [SMALL_STATE(962)] = 29707, + [SMALL_STATE(963)] = 29782, + [SMALL_STATE(964)] = 29863, + [SMALL_STATE(965)] = 29938, + [SMALL_STATE(966)] = 30019, + [SMALL_STATE(967)] = 30068, + [SMALL_STATE(968)] = 30121, + [SMALL_STATE(969)] = 30202, + [SMALL_STATE(970)] = 30277, + [SMALL_STATE(971)] = 30326, + [SMALL_STATE(972)] = 30409, + [SMALL_STATE(973)] = 30490, + [SMALL_STATE(974)] = 30571, + [SMALL_STATE(975)] = 30652, + [SMALL_STATE(976)] = 30707, + [SMALL_STATE(977)] = 30788, + [SMALL_STATE(978)] = 30869, + [SMALL_STATE(979)] = 30944, + [SMALL_STATE(980)] = 31025, + [SMALL_STATE(981)] = 31090, + [SMALL_STATE(982)] = 31159, + [SMALL_STATE(983)] = 31230, + [SMALL_STATE(984)] = 31307, + [SMALL_STATE(985)] = 31388, + [SMALL_STATE(986)] = 31469, + [SMALL_STATE(987)] = 31548, + [SMALL_STATE(988)] = 31623, + [SMALL_STATE(989)] = 31698, + [SMALL_STATE(990)] = 31749, + [SMALL_STATE(991)] = 31830, + [SMALL_STATE(992)] = 31897, + [SMALL_STATE(993)] = 31960, + [SMALL_STATE(994)] = 32041, + [SMALL_STATE(995)] = 32122, + [SMALL_STATE(996)] = 32171, + [SMALL_STATE(997)] = 32250, + [SMALL_STATE(998)] = 32333, + [SMALL_STATE(999)] = 32414, + [SMALL_STATE(1000)] = 32493, + [SMALL_STATE(1001)] = 32574, + [SMALL_STATE(1002)] = 32621, + [SMALL_STATE(1003)] = 32700, + [SMALL_STATE(1004)] = 32778, + [SMALL_STATE(1005)] = 32856, + [SMALL_STATE(1006)] = 32900, + [SMALL_STATE(1007)] = 32980, + [SMALL_STATE(1008)] = 33058, + [SMALL_STATE(1009)] = 33102, + [SMALL_STATE(1010)] = 33180, + [SMALL_STATE(1011)] = 33258, + [SMALL_STATE(1012)] = 33338, + [SMALL_STATE(1013)] = 33418, + [SMALL_STATE(1014)] = 33496, + [SMALL_STATE(1015)] = 33574, + [SMALL_STATE(1016)] = 33652, + [SMALL_STATE(1017)] = 33732, + [SMALL_STATE(1018)] = 33812, + [SMALL_STATE(1019)] = 33890, + [SMALL_STATE(1020)] = 33968, + [SMALL_STATE(1021)] = 34046, + [SMALL_STATE(1022)] = 34124, + [SMALL_STATE(1023)] = 34202, + [SMALL_STATE(1024)] = 34280, + [SMALL_STATE(1025)] = 34356, + [SMALL_STATE(1026)] = 34436, + [SMALL_STATE(1027)] = 34514, + [SMALL_STATE(1028)] = 34570, + [SMALL_STATE(1029)] = 34650, + [SMALL_STATE(1030)] = 34728, + [SMALL_STATE(1031)] = 34806, + [SMALL_STATE(1032)] = 34884, + [SMALL_STATE(1033)] = 34962, + [SMALL_STATE(1034)] = 35042, + [SMALL_STATE(1035)] = 35120, + [SMALL_STATE(1036)] = 35198, + [SMALL_STATE(1037)] = 35276, + [SMALL_STATE(1038)] = 35353, + [SMALL_STATE(1039)] = 35430, + [SMALL_STATE(1040)] = 35507, + [SMALL_STATE(1041)] = 35584, + [SMALL_STATE(1042)] = 35661, + [SMALL_STATE(1043)] = 35738, + [SMALL_STATE(1044)] = 35815, + [SMALL_STATE(1045)] = 35892, + [SMALL_STATE(1046)] = 35969, + [SMALL_STATE(1047)] = 36046, + [SMALL_STATE(1048)] = 36123, + [SMALL_STATE(1049)] = 36200, + [SMALL_STATE(1050)] = 36277, + [SMALL_STATE(1051)] = 36354, + [SMALL_STATE(1052)] = 36431, + [SMALL_STATE(1053)] = 36508, + [SMALL_STATE(1054)] = 36585, + [SMALL_STATE(1055)] = 36662, + [SMALL_STATE(1056)] = 36739, + [SMALL_STATE(1057)] = 36816, + [SMALL_STATE(1058)] = 36893, + [SMALL_STATE(1059)] = 36970, + [SMALL_STATE(1060)] = 37047, + [SMALL_STATE(1061)] = 37124, + [SMALL_STATE(1062)] = 37201, + [SMALL_STATE(1063)] = 37278, + [SMALL_STATE(1064)] = 37355, + [SMALL_STATE(1065)] = 37432, + [SMALL_STATE(1066)] = 37509, + [SMALL_STATE(1067)] = 37586, + [SMALL_STATE(1068)] = 37663, + [SMALL_STATE(1069)] = 37740, + [SMALL_STATE(1070)] = 37817, + [SMALL_STATE(1071)] = 37894, + [SMALL_STATE(1072)] = 37971, + [SMALL_STATE(1073)] = 38048, + [SMALL_STATE(1074)] = 38125, + [SMALL_STATE(1075)] = 38202, + [SMALL_STATE(1076)] = 38279, + [SMALL_STATE(1077)] = 38356, + [SMALL_STATE(1078)] = 38433, + [SMALL_STATE(1079)] = 38510, + [SMALL_STATE(1080)] = 38587, + [SMALL_STATE(1081)] = 38664, + [SMALL_STATE(1082)] = 38741, + [SMALL_STATE(1083)] = 38818, + [SMALL_STATE(1084)] = 38895, + [SMALL_STATE(1085)] = 38972, + [SMALL_STATE(1086)] = 39049, + [SMALL_STATE(1087)] = 39126, + [SMALL_STATE(1088)] = 39203, + [SMALL_STATE(1089)] = 39280, + [SMALL_STATE(1090)] = 39359, + [SMALL_STATE(1091)] = 39438, + [SMALL_STATE(1092)] = 39517, + [SMALL_STATE(1093)] = 39596, + [SMALL_STATE(1094)] = 39675, + [SMALL_STATE(1095)] = 39754, + [SMALL_STATE(1096)] = 39831, + [SMALL_STATE(1097)] = 39910, + [SMALL_STATE(1098)] = 39989, + [SMALL_STATE(1099)] = 40033, + [SMALL_STATE(1100)] = 40097, + [SMALL_STATE(1101)] = 40137, + [SMALL_STATE(1102)] = 40179, + [SMALL_STATE(1103)] = 40219, + [SMALL_STATE(1104)] = 40283, + [SMALL_STATE(1105)] = 40322, + [SMALL_STATE(1106)] = 40361, + [SMALL_STATE(1107)] = 40400, + [SMALL_STATE(1108)] = 40458, + [SMALL_STATE(1109)] = 40516, + [SMALL_STATE(1110)] = 40574, + [SMALL_STATE(1111)] = 40625, + [SMALL_STATE(1112)] = 40676, + [SMALL_STATE(1113)] = 40727, + [SMALL_STATE(1114)] = 40759, + [SMALL_STATE(1115)] = 40809, + [SMALL_STATE(1116)] = 40836, + [SMALL_STATE(1117)] = 40879, + [SMALL_STATE(1118)] = 40922, + [SMALL_STATE(1119)] = 40946, + [SMALL_STATE(1120)] = 40970, + [SMALL_STATE(1121)] = 40994, + [SMALL_STATE(1122)] = 41018, + [SMALL_STATE(1123)] = 41042, + [SMALL_STATE(1124)] = 41066, + [SMALL_STATE(1125)] = 41090, + [SMALL_STATE(1126)] = 41114, + [SMALL_STATE(1127)] = 41138, + [SMALL_STATE(1128)] = 41162, + [SMALL_STATE(1129)] = 41186, + [SMALL_STATE(1130)] = 41210, + [SMALL_STATE(1131)] = 41234, + [SMALL_STATE(1132)] = 41258, + [SMALL_STATE(1133)] = 41282, + [SMALL_STATE(1134)] = 41306, + [SMALL_STATE(1135)] = 41330, + [SMALL_STATE(1136)] = 41354, + [SMALL_STATE(1137)] = 41378, + [SMALL_STATE(1138)] = 41402, + [SMALL_STATE(1139)] = 41426, + [SMALL_STATE(1140)] = 41450, + [SMALL_STATE(1141)] = 41474, + [SMALL_STATE(1142)] = 41498, + [SMALL_STATE(1143)] = 41522, + [SMALL_STATE(1144)] = 41546, + [SMALL_STATE(1145)] = 41570, + [SMALL_STATE(1146)] = 41594, + [SMALL_STATE(1147)] = 41618, + [SMALL_STATE(1148)] = 41642, + [SMALL_STATE(1149)] = 41666, + [SMALL_STATE(1150)] = 41690, + [SMALL_STATE(1151)] = 41714, + [SMALL_STATE(1152)] = 41738, + [SMALL_STATE(1153)] = 41777, + [SMALL_STATE(1154)] = 41816, + [SMALL_STATE(1155)] = 41855, + [SMALL_STATE(1156)] = 41894, + [SMALL_STATE(1157)] = 41933, + [SMALL_STATE(1158)] = 41972, + [SMALL_STATE(1159)] = 42011, + [SMALL_STATE(1160)] = 42043, + [SMALL_STATE(1161)] = 42079, + [SMALL_STATE(1162)] = 42115, + [SMALL_STATE(1163)] = 42147, + [SMALL_STATE(1164)] = 42183, + [SMALL_STATE(1165)] = 42219, + [SMALL_STATE(1166)] = 42249, + [SMALL_STATE(1167)] = 42281, + [SMALL_STATE(1168)] = 42317, + [SMALL_STATE(1169)] = 42353, + [SMALL_STATE(1170)] = 42382, + [SMALL_STATE(1171)] = 42409, + [SMALL_STATE(1172)] = 42438, + [SMALL_STATE(1173)] = 42467, + [SMALL_STATE(1174)] = 42498, + [SMALL_STATE(1175)] = 42527, + [SMALL_STATE(1176)] = 42556, + [SMALL_STATE(1177)] = 42585, + [SMALL_STATE(1178)] = 42616, + [SMALL_STATE(1179)] = 42645, + [SMALL_STATE(1180)] = 42676, + [SMALL_STATE(1181)] = 42707, + [SMALL_STATE(1182)] = 42736, + [SMALL_STATE(1183)] = 42767, + [SMALL_STATE(1184)] = 42798, + [SMALL_STATE(1185)] = 42825, + [SMALL_STATE(1186)] = 42854, + [SMALL_STATE(1187)] = 42883, + [SMALL_STATE(1188)] = 42914, + [SMALL_STATE(1189)] = 42943, + [SMALL_STATE(1190)] = 42974, + [SMALL_STATE(1191)] = 43001, + [SMALL_STATE(1192)] = 43030, + [SMALL_STATE(1193)] = 43059, + [SMALL_STATE(1194)] = 43090, + [SMALL_STATE(1195)] = 43121, + [SMALL_STATE(1196)] = 43150, + [SMALL_STATE(1197)] = 43179, + [SMALL_STATE(1198)] = 43208, + [SMALL_STATE(1199)] = 43237, + [SMALL_STATE(1200)] = 43266, + [SMALL_STATE(1201)] = 43296, + [SMALL_STATE(1202)] = 43322, + [SMALL_STATE(1203)] = 43356, + [SMALL_STATE(1204)] = 43382, + [SMALL_STATE(1205)] = 43410, + [SMALL_STATE(1206)] = 43440, + [SMALL_STATE(1207)] = 43474, + [SMALL_STATE(1208)] = 43500, + [SMALL_STATE(1209)] = 43523, + [SMALL_STATE(1210)] = 43550, + [SMALL_STATE(1211)] = 43573, + [SMALL_STATE(1212)] = 43596, + [SMALL_STATE(1213)] = 43617, + [SMALL_STATE(1214)] = 43638, + [SMALL_STATE(1215)] = 43661, + [SMALL_STATE(1216)] = 43684, + [SMALL_STATE(1217)] = 43707, + [SMALL_STATE(1218)] = 43730, + [SMALL_STATE(1219)] = 43753, + [SMALL_STATE(1220)] = 43776, + [SMALL_STATE(1221)] = 43799, + [SMALL_STATE(1222)] = 43822, + [SMALL_STATE(1223)] = 43843, + [SMALL_STATE(1224)] = 43868, + [SMALL_STATE(1225)] = 43893, + [SMALL_STATE(1226)] = 43916, + [SMALL_STATE(1227)] = 43944, + [SMALL_STATE(1228)] = 43966, + [SMALL_STATE(1229)] = 43988, + [SMALL_STATE(1230)] = 44016, + [SMALL_STATE(1231)] = 44044, + [SMALL_STATE(1232)] = 44072, + [SMALL_STATE(1233)] = 44094, + [SMALL_STATE(1234)] = 44122, + [SMALL_STATE(1235)] = 44146, + [SMALL_STATE(1236)] = 44172, + [SMALL_STATE(1237)] = 44200, + [SMALL_STATE(1238)] = 44228, + [SMALL_STATE(1239)] = 44254, + [SMALL_STATE(1240)] = 44278, + [SMALL_STATE(1241)] = 44296, + [SMALL_STATE(1242)] = 44314, + [SMALL_STATE(1243)] = 44338, + [SMALL_STATE(1244)] = 44366, + [SMALL_STATE(1245)] = 44390, + [SMALL_STATE(1246)] = 44408, + [SMALL_STATE(1247)] = 44436, + [SMALL_STATE(1248)] = 44458, + [SMALL_STATE(1249)] = 44484, + [SMALL_STATE(1250)] = 44508, + [SMALL_STATE(1251)] = 44536, + [SMALL_STATE(1252)] = 44564, + [SMALL_STATE(1253)] = 44592, + [SMALL_STATE(1254)] = 44614, + [SMALL_STATE(1255)] = 44642, + [SMALL_STATE(1256)] = 44670, + [SMALL_STATE(1257)] = 44698, + [SMALL_STATE(1258)] = 44726, + [SMALL_STATE(1259)] = 44754, + [SMALL_STATE(1260)] = 44780, + [SMALL_STATE(1261)] = 44802, + [SMALL_STATE(1262)] = 44828, + [SMALL_STATE(1263)] = 44856, + [SMALL_STATE(1264)] = 44882, + [SMALL_STATE(1265)] = 44906, + [SMALL_STATE(1266)] = 44928, + [SMALL_STATE(1267)] = 44954, + [SMALL_STATE(1268)] = 44980, + [SMALL_STATE(1269)] = 45006, + [SMALL_STATE(1270)] = 45030, + [SMALL_STATE(1271)] = 45058, + [SMALL_STATE(1272)] = 45086, + [SMALL_STATE(1273)] = 45104, + [SMALL_STATE(1274)] = 45130, + [SMALL_STATE(1275)] = 45156, + [SMALL_STATE(1276)] = 45174, + [SMALL_STATE(1277)] = 45192, + [SMALL_STATE(1278)] = 45218, + [SMALL_STATE(1279)] = 45242, + [SMALL_STATE(1280)] = 45270, + [SMALL_STATE(1281)] = 45294, + [SMALL_STATE(1282)] = 45322, + [SMALL_STATE(1283)] = 45344, + [SMALL_STATE(1284)] = 45370, + [SMALL_STATE(1285)] = 45398, + [SMALL_STATE(1286)] = 45420, + [SMALL_STATE(1287)] = 45448, + [SMALL_STATE(1288)] = 45467, + [SMALL_STATE(1289)] = 45490, + [SMALL_STATE(1290)] = 45509, + [SMALL_STATE(1291)] = 45530, + [SMALL_STATE(1292)] = 45551, + [SMALL_STATE(1293)] = 45572, + [SMALL_STATE(1294)] = 45593, + [SMALL_STATE(1295)] = 45614, + [SMALL_STATE(1296)] = 45639, + [SMALL_STATE(1297)] = 45662, + [SMALL_STATE(1298)] = 45681, + [SMALL_STATE(1299)] = 45702, + [SMALL_STATE(1300)] = 45725, + [SMALL_STATE(1301)] = 45746, + [SMALL_STATE(1302)] = 45771, + [SMALL_STATE(1303)] = 45796, + [SMALL_STATE(1304)] = 45817, + [SMALL_STATE(1305)] = 45842, + [SMALL_STATE(1306)] = 45865, + [SMALL_STATE(1307)] = 45888, + [SMALL_STATE(1308)] = 45911, + [SMALL_STATE(1309)] = 45930, + [SMALL_STATE(1310)] = 45953, + [SMALL_STATE(1311)] = 45978, + [SMALL_STATE(1312)] = 45999, + [SMALL_STATE(1313)] = 46020, + [SMALL_STATE(1314)] = 46041, + [SMALL_STATE(1315)] = 46062, + [SMALL_STATE(1316)] = 46083, + [SMALL_STATE(1317)] = 46102, + [SMALL_STATE(1318)] = 46127, + [SMALL_STATE(1319)] = 46152, + [SMALL_STATE(1320)] = 46175, + [SMALL_STATE(1321)] = 46196, + [SMALL_STATE(1322)] = 46217, + [SMALL_STATE(1323)] = 46236, + [SMALL_STATE(1324)] = 46257, + [SMALL_STATE(1325)] = 46280, + [SMALL_STATE(1326)] = 46299, + [SMALL_STATE(1327)] = 46320, + [SMALL_STATE(1328)] = 46343, + [SMALL_STATE(1329)] = 46364, + [SMALL_STATE(1330)] = 46381, + [SMALL_STATE(1331)] = 46402, + [SMALL_STATE(1332)] = 46423, + [SMALL_STATE(1333)] = 46444, + [SMALL_STATE(1334)] = 46465, + [SMALL_STATE(1335)] = 46488, + [SMALL_STATE(1336)] = 46505, + [SMALL_STATE(1337)] = 46526, + [SMALL_STATE(1338)] = 46547, + [SMALL_STATE(1339)] = 46572, + [SMALL_STATE(1340)] = 46593, + [SMALL_STATE(1341)] = 46614, + [SMALL_STATE(1342)] = 46633, + [SMALL_STATE(1343)] = 46654, + [SMALL_STATE(1344)] = 46675, + [SMALL_STATE(1345)] = 46700, + [SMALL_STATE(1346)] = 46721, + [SMALL_STATE(1347)] = 46742, + [SMALL_STATE(1348)] = 46763, + [SMALL_STATE(1349)] = 46788, + [SMALL_STATE(1350)] = 46809, + [SMALL_STATE(1351)] = 46830, + [SMALL_STATE(1352)] = 46851, + [SMALL_STATE(1353)] = 46872, + [SMALL_STATE(1354)] = 46891, + [SMALL_STATE(1355)] = 46912, + [SMALL_STATE(1356)] = 46933, + [SMALL_STATE(1357)] = 46954, + [SMALL_STATE(1358)] = 46973, + [SMALL_STATE(1359)] = 46996, + [SMALL_STATE(1360)] = 47017, + [SMALL_STATE(1361)] = 47042, + [SMALL_STATE(1362)] = 47063, + [SMALL_STATE(1363)] = 47086, + [SMALL_STATE(1364)] = 47107, + [SMALL_STATE(1365)] = 47130, + [SMALL_STATE(1366)] = 47146, + [SMALL_STATE(1367)] = 47166, + [SMALL_STATE(1368)] = 47182, + [SMALL_STATE(1369)] = 47198, + [SMALL_STATE(1370)] = 47214, + [SMALL_STATE(1371)] = 47232, + [SMALL_STATE(1372)] = 47248, + [SMALL_STATE(1373)] = 47270, + [SMALL_STATE(1374)] = 47286, + [SMALL_STATE(1375)] = 47306, + [SMALL_STATE(1376)] = 47326, + [SMALL_STATE(1377)] = 47342, + [SMALL_STATE(1378)] = 47362, + [SMALL_STATE(1379)] = 47382, + [SMALL_STATE(1380)] = 47402, + [SMALL_STATE(1381)] = 47418, + [SMALL_STATE(1382)] = 47434, + [SMALL_STATE(1383)] = 47450, + [SMALL_STATE(1384)] = 47468, + [SMALL_STATE(1385)] = 47488, + [SMALL_STATE(1386)] = 47510, + [SMALL_STATE(1387)] = 47532, + [SMALL_STATE(1388)] = 47552, + [SMALL_STATE(1389)] = 47574, + [SMALL_STATE(1390)] = 47594, + [SMALL_STATE(1391)] = 47612, + [SMALL_STATE(1392)] = 47628, + [SMALL_STATE(1393)] = 47644, + [SMALL_STATE(1394)] = 47664, + [SMALL_STATE(1395)] = 47684, + [SMALL_STATE(1396)] = 47700, + [SMALL_STATE(1397)] = 47720, + [SMALL_STATE(1398)] = 47742, + [SMALL_STATE(1399)] = 47758, + [SMALL_STATE(1400)] = 47780, + [SMALL_STATE(1401)] = 47800, + [SMALL_STATE(1402)] = 47822, + [SMALL_STATE(1403)] = 47838, + [SMALL_STATE(1404)] = 47860, + [SMALL_STATE(1405)] = 47880, + [SMALL_STATE(1406)] = 47896, + [SMALL_STATE(1407)] = 47918, + [SMALL_STATE(1408)] = 47938, + [SMALL_STATE(1409)] = 47960, + [SMALL_STATE(1410)] = 47982, + [SMALL_STATE(1411)] = 47998, + [SMALL_STATE(1412)] = 48014, + [SMALL_STATE(1413)] = 48034, + [SMALL_STATE(1414)] = 48050, + [SMALL_STATE(1415)] = 48072, + [SMALL_STATE(1416)] = 48088, + [SMALL_STATE(1417)] = 48108, + [SMALL_STATE(1418)] = 48130, + [SMALL_STATE(1419)] = 48150, + [SMALL_STATE(1420)] = 48168, + [SMALL_STATE(1421)] = 48184, + [SMALL_STATE(1422)] = 48204, + [SMALL_STATE(1423)] = 48226, + [SMALL_STATE(1424)] = 48244, + [SMALL_STATE(1425)] = 48264, + [SMALL_STATE(1426)] = 48284, + [SMALL_STATE(1427)] = 48302, + [SMALL_STATE(1428)] = 48322, + [SMALL_STATE(1429)] = 48340, + [SMALL_STATE(1430)] = 48358, + [SMALL_STATE(1431)] = 48378, + [SMALL_STATE(1432)] = 48394, + [SMALL_STATE(1433)] = 48416, + [SMALL_STATE(1434)] = 48434, + [SMALL_STATE(1435)] = 48450, + [SMALL_STATE(1436)] = 48466, + [SMALL_STATE(1437)] = 48486, + [SMALL_STATE(1438)] = 48506, + [SMALL_STATE(1439)] = 48526, + [SMALL_STATE(1440)] = 48546, + [SMALL_STATE(1441)] = 48566, + [SMALL_STATE(1442)] = 48588, + [SMALL_STATE(1443)] = 48608, + [SMALL_STATE(1444)] = 48624, + [SMALL_STATE(1445)] = 48642, + [SMALL_STATE(1446)] = 48662, + [SMALL_STATE(1447)] = 48684, + [SMALL_STATE(1448)] = 48704, + [SMALL_STATE(1449)] = 48724, + [SMALL_STATE(1450)] = 48740, + [SMALL_STATE(1451)] = 48762, + [SMALL_STATE(1452)] = 48784, + [SMALL_STATE(1453)] = 48804, + [SMALL_STATE(1454)] = 48826, + [SMALL_STATE(1455)] = 48846, + [SMALL_STATE(1456)] = 48864, + [SMALL_STATE(1457)] = 48882, + [SMALL_STATE(1458)] = 48904, + [SMALL_STATE(1459)] = 48924, + [SMALL_STATE(1460)] = 48946, + [SMALL_STATE(1461)] = 48964, + [SMALL_STATE(1462)] = 48984, + [SMALL_STATE(1463)] = 49006, + [SMALL_STATE(1464)] = 49022, + [SMALL_STATE(1465)] = 49038, + [SMALL_STATE(1466)] = 49054, + [SMALL_STATE(1467)] = 49076, + [SMALL_STATE(1468)] = 49096, + [SMALL_STATE(1469)] = 49118, + [SMALL_STATE(1470)] = 49138, + [SMALL_STATE(1471)] = 49160, + [SMALL_STATE(1472)] = 49180, + [SMALL_STATE(1473)] = 49202, + [SMALL_STATE(1474)] = 49218, + [SMALL_STATE(1475)] = 49240, + [SMALL_STATE(1476)] = 49262, + [SMALL_STATE(1477)] = 49282, + [SMALL_STATE(1478)] = 49302, + [SMALL_STATE(1479)] = 49318, + [SMALL_STATE(1480)] = 49340, + [SMALL_STATE(1481)] = 49360, + [SMALL_STATE(1482)] = 49380, + [SMALL_STATE(1483)] = 49402, + [SMALL_STATE(1484)] = 49420, + [SMALL_STATE(1485)] = 49442, + [SMALL_STATE(1486)] = 49461, + [SMALL_STATE(1487)] = 49478, + [SMALL_STATE(1488)] = 49495, + [SMALL_STATE(1489)] = 49514, + [SMALL_STATE(1490)] = 49533, + [SMALL_STATE(1491)] = 49552, + [SMALL_STATE(1492)] = 49571, + [SMALL_STATE(1493)] = 49588, + [SMALL_STATE(1494)] = 49607, + [SMALL_STATE(1495)] = 49626, + [SMALL_STATE(1496)] = 49641, + [SMALL_STATE(1497)] = 49660, + [SMALL_STATE(1498)] = 49677, + [SMALL_STATE(1499)] = 49696, + [SMALL_STATE(1500)] = 49715, + [SMALL_STATE(1501)] = 49732, + [SMALL_STATE(1502)] = 49751, + [SMALL_STATE(1503)] = 49770, + [SMALL_STATE(1504)] = 49789, + [SMALL_STATE(1505)] = 49808, + [SMALL_STATE(1506)] = 49825, + [SMALL_STATE(1507)] = 49842, + [SMALL_STATE(1508)] = 49859, + [SMALL_STATE(1509)] = 49876, + [SMALL_STATE(1510)] = 49893, + [SMALL_STATE(1511)] = 49910, + [SMALL_STATE(1512)] = 49929, + [SMALL_STATE(1513)] = 49946, + [SMALL_STATE(1514)] = 49963, + [SMALL_STATE(1515)] = 49980, + [SMALL_STATE(1516)] = 49997, + [SMALL_STATE(1517)] = 50012, + [SMALL_STATE(1518)] = 50029, + [SMALL_STATE(1519)] = 50044, + [SMALL_STATE(1520)] = 50061, + [SMALL_STATE(1521)] = 50080, + [SMALL_STATE(1522)] = 50097, + [SMALL_STATE(1523)] = 50114, + [SMALL_STATE(1524)] = 50133, + [SMALL_STATE(1525)] = 50150, + [SMALL_STATE(1526)] = 50167, + [SMALL_STATE(1527)] = 50182, + [SMALL_STATE(1528)] = 50201, + [SMALL_STATE(1529)] = 50216, + [SMALL_STATE(1530)] = 50235, + [SMALL_STATE(1531)] = 50252, + [SMALL_STATE(1532)] = 50269, + [SMALL_STATE(1533)] = 50288, + [SMALL_STATE(1534)] = 50305, + [SMALL_STATE(1535)] = 50322, + [SMALL_STATE(1536)] = 50339, + [SMALL_STATE(1537)] = 50358, + [SMALL_STATE(1538)] = 50377, + [SMALL_STATE(1539)] = 50394, + [SMALL_STATE(1540)] = 50413, + [SMALL_STATE(1541)] = 50430, + [SMALL_STATE(1542)] = 50447, + [SMALL_STATE(1543)] = 50466, + [SMALL_STATE(1544)] = 50485, + [SMALL_STATE(1545)] = 50502, + [SMALL_STATE(1546)] = 50521, + [SMALL_STATE(1547)] = 50540, + [SMALL_STATE(1548)] = 50559, + [SMALL_STATE(1549)] = 50576, + [SMALL_STATE(1550)] = 50595, + [SMALL_STATE(1551)] = 50614, + [SMALL_STATE(1552)] = 50631, + [SMALL_STATE(1553)] = 50650, + [SMALL_STATE(1554)] = 50667, + [SMALL_STATE(1555)] = 50684, + [SMALL_STATE(1556)] = 50701, + [SMALL_STATE(1557)] = 50720, + [SMALL_STATE(1558)] = 50737, + [SMALL_STATE(1559)] = 50756, + [SMALL_STATE(1560)] = 50773, + [SMALL_STATE(1561)] = 50788, + [SMALL_STATE(1562)] = 50805, + [SMALL_STATE(1563)] = 50824, + [SMALL_STATE(1564)] = 50841, + [SMALL_STATE(1565)] = 50860, + [SMALL_STATE(1566)] = 50875, + [SMALL_STATE(1567)] = 50894, + [SMALL_STATE(1568)] = 50911, + [SMALL_STATE(1569)] = 50928, + [SMALL_STATE(1570)] = 50947, + [SMALL_STATE(1571)] = 50964, + [SMALL_STATE(1572)] = 50983, + [SMALL_STATE(1573)] = 50998, + [SMALL_STATE(1574)] = 51015, + [SMALL_STATE(1575)] = 51034, + [SMALL_STATE(1576)] = 51051, + [SMALL_STATE(1577)] = 51070, + [SMALL_STATE(1578)] = 51089, + [SMALL_STATE(1579)] = 51106, + [SMALL_STATE(1580)] = 51123, + [SMALL_STATE(1581)] = 51140, + [SMALL_STATE(1582)] = 51155, + [SMALL_STATE(1583)] = 51172, + [SMALL_STATE(1584)] = 51191, + [SMALL_STATE(1585)] = 51206, + [SMALL_STATE(1586)] = 51225, + [SMALL_STATE(1587)] = 51242, + [SMALL_STATE(1588)] = 51259, + [SMALL_STATE(1589)] = 51276, + [SMALL_STATE(1590)] = 51295, + [SMALL_STATE(1591)] = 51314, + [SMALL_STATE(1592)] = 51331, + [SMALL_STATE(1593)] = 51348, + [SMALL_STATE(1594)] = 51365, + [SMALL_STATE(1595)] = 51382, + [SMALL_STATE(1596)] = 51399, + [SMALL_STATE(1597)] = 51418, + [SMALL_STATE(1598)] = 51433, + [SMALL_STATE(1599)] = 51448, + [SMALL_STATE(1600)] = 51463, + [SMALL_STATE(1601)] = 51480, + [SMALL_STATE(1602)] = 51497, + [SMALL_STATE(1603)] = 51514, + [SMALL_STATE(1604)] = 51531, + [SMALL_STATE(1605)] = 51550, + [SMALL_STATE(1606)] = 51567, + [SMALL_STATE(1607)] = 51582, + [SMALL_STATE(1608)] = 51599, + [SMALL_STATE(1609)] = 51616, + [SMALL_STATE(1610)] = 51633, + [SMALL_STATE(1611)] = 51650, + [SMALL_STATE(1612)] = 51665, + [SMALL_STATE(1613)] = 51682, + [SMALL_STATE(1614)] = 51701, + [SMALL_STATE(1615)] = 51720, + [SMALL_STATE(1616)] = 51739, + [SMALL_STATE(1617)] = 51758, + [SMALL_STATE(1618)] = 51777, + [SMALL_STATE(1619)] = 51794, + [SMALL_STATE(1620)] = 51813, + [SMALL_STATE(1621)] = 51832, + [SMALL_STATE(1622)] = 51851, + [SMALL_STATE(1623)] = 51870, + [SMALL_STATE(1624)] = 51887, + [SMALL_STATE(1625)] = 51904, + [SMALL_STATE(1626)] = 51921, + [SMALL_STATE(1627)] = 51940, + [SMALL_STATE(1628)] = 51957, + [SMALL_STATE(1629)] = 51974, + [SMALL_STATE(1630)] = 51991, + [SMALL_STATE(1631)] = 52008, + [SMALL_STATE(1632)] = 52027, + [SMALL_STATE(1633)] = 52044, + [SMALL_STATE(1634)] = 52061, + [SMALL_STATE(1635)] = 52080, + [SMALL_STATE(1636)] = 52099, + [SMALL_STATE(1637)] = 52116, + [SMALL_STATE(1638)] = 52135, + [SMALL_STATE(1639)] = 52152, + [SMALL_STATE(1640)] = 52171, + [SMALL_STATE(1641)] = 52188, + [SMALL_STATE(1642)] = 52205, + [SMALL_STATE(1643)] = 52222, + [SMALL_STATE(1644)] = 52237, + [SMALL_STATE(1645)] = 52256, + [SMALL_STATE(1646)] = 52275, + [SMALL_STATE(1647)] = 52292, + [SMALL_STATE(1648)] = 52307, + [SMALL_STATE(1649)] = 52324, + [SMALL_STATE(1650)] = 52339, + [SMALL_STATE(1651)] = 52354, + [SMALL_STATE(1652)] = 52371, + [SMALL_STATE(1653)] = 52390, + [SMALL_STATE(1654)] = 52409, + [SMALL_STATE(1655)] = 52428, + [SMALL_STATE(1656)] = 52445, + [SMALL_STATE(1657)] = 52462, + [SMALL_STATE(1658)] = 52479, + [SMALL_STATE(1659)] = 52496, + [SMALL_STATE(1660)] = 52513, + [SMALL_STATE(1661)] = 52530, + [SMALL_STATE(1662)] = 52547, + [SMALL_STATE(1663)] = 52562, + [SMALL_STATE(1664)] = 52577, + [SMALL_STATE(1665)] = 52594, + [SMALL_STATE(1666)] = 52613, + [SMALL_STATE(1667)] = 52630, + [SMALL_STATE(1668)] = 52647, + [SMALL_STATE(1669)] = 52666, + [SMALL_STATE(1670)] = 52683, + [SMALL_STATE(1671)] = 52700, + [SMALL_STATE(1672)] = 52719, + [SMALL_STATE(1673)] = 52738, + [SMALL_STATE(1674)] = 52755, + [SMALL_STATE(1675)] = 52772, + [SMALL_STATE(1676)] = 52791, + [SMALL_STATE(1677)] = 52808, + [SMALL_STATE(1678)] = 52827, + [SMALL_STATE(1679)] = 52844, + [SMALL_STATE(1680)] = 52863, + [SMALL_STATE(1681)] = 52880, + [SMALL_STATE(1682)] = 52899, + [SMALL_STATE(1683)] = 52914, + [SMALL_STATE(1684)] = 52933, + [SMALL_STATE(1685)] = 52948, + [SMALL_STATE(1686)] = 52965, + [SMALL_STATE(1687)] = 52984, + [SMALL_STATE(1688)] = 53001, + [SMALL_STATE(1689)] = 53018, + [SMALL_STATE(1690)] = 53035, + [SMALL_STATE(1691)] = 53052, + [SMALL_STATE(1692)] = 53071, + [SMALL_STATE(1693)] = 53090, + [SMALL_STATE(1694)] = 53109, + [SMALL_STATE(1695)] = 53128, + [SMALL_STATE(1696)] = 53147, + [SMALL_STATE(1697)] = 53162, + [SMALL_STATE(1698)] = 53179, + [SMALL_STATE(1699)] = 53196, + [SMALL_STATE(1700)] = 53213, + [SMALL_STATE(1701)] = 53230, + [SMALL_STATE(1702)] = 53249, + [SMALL_STATE(1703)] = 53268, + [SMALL_STATE(1704)] = 53287, + [SMALL_STATE(1705)] = 53304, + [SMALL_STATE(1706)] = 53323, + [SMALL_STATE(1707)] = 53340, + [SMALL_STATE(1708)] = 53359, + [SMALL_STATE(1709)] = 53378, + [SMALL_STATE(1710)] = 53395, + [SMALL_STATE(1711)] = 53414, + [SMALL_STATE(1712)] = 53433, + [SMALL_STATE(1713)] = 53450, + [SMALL_STATE(1714)] = 53469, + [SMALL_STATE(1715)] = 53488, + [SMALL_STATE(1716)] = 53505, + [SMALL_STATE(1717)] = 53520, + [SMALL_STATE(1718)] = 53536, + [SMALL_STATE(1719)] = 53552, + [SMALL_STATE(1720)] = 53566, + [SMALL_STATE(1721)] = 53580, + [SMALL_STATE(1722)] = 53596, + [SMALL_STATE(1723)] = 53610, + [SMALL_STATE(1724)] = 53624, + [SMALL_STATE(1725)] = 53640, + [SMALL_STATE(1726)] = 53656, + [SMALL_STATE(1727)] = 53672, + [SMALL_STATE(1728)] = 53686, + [SMALL_STATE(1729)] = 53700, + [SMALL_STATE(1730)] = 53716, + [SMALL_STATE(1731)] = 53732, + [SMALL_STATE(1732)] = 53748, + [SMALL_STATE(1733)] = 53764, + [SMALL_STATE(1734)] = 53780, + [SMALL_STATE(1735)] = 53796, + [SMALL_STATE(1736)] = 53810, + [SMALL_STATE(1737)] = 53826, + [SMALL_STATE(1738)] = 53842, + [SMALL_STATE(1739)] = 53858, + [SMALL_STATE(1740)] = 53874, + [SMALL_STATE(1741)] = 53888, + [SMALL_STATE(1742)] = 53902, + [SMALL_STATE(1743)] = 53918, + [SMALL_STATE(1744)] = 53934, + [SMALL_STATE(1745)] = 53948, + [SMALL_STATE(1746)] = 53962, + [SMALL_STATE(1747)] = 53978, + [SMALL_STATE(1748)] = 53994, + [SMALL_STATE(1749)] = 54010, + [SMALL_STATE(1750)] = 54024, + [SMALL_STATE(1751)] = 54038, + [SMALL_STATE(1752)] = 54054, + [SMALL_STATE(1753)] = 54068, + [SMALL_STATE(1754)] = 54084, + [SMALL_STATE(1755)] = 54098, + [SMALL_STATE(1756)] = 54114, + [SMALL_STATE(1757)] = 54130, + [SMALL_STATE(1758)] = 54146, + [SMALL_STATE(1759)] = 54162, + [SMALL_STATE(1760)] = 54176, + [SMALL_STATE(1761)] = 54192, + [SMALL_STATE(1762)] = 54208, + [SMALL_STATE(1763)] = 54224, + [SMALL_STATE(1764)] = 54240, + [SMALL_STATE(1765)] = 54256, + [SMALL_STATE(1766)] = 54272, + [SMALL_STATE(1767)] = 54288, + [SMALL_STATE(1768)] = 54302, + [SMALL_STATE(1769)] = 54316, + [SMALL_STATE(1770)] = 54332, + [SMALL_STATE(1771)] = 54348, + [SMALL_STATE(1772)] = 54362, + [SMALL_STATE(1773)] = 54378, + [SMALL_STATE(1774)] = 54394, + [SMALL_STATE(1775)] = 54410, + [SMALL_STATE(1776)] = 54426, + [SMALL_STATE(1777)] = 54442, + [SMALL_STATE(1778)] = 54456, + [SMALL_STATE(1779)] = 54470, + [SMALL_STATE(1780)] = 54484, + [SMALL_STATE(1781)] = 54498, + [SMALL_STATE(1782)] = 54514, + [SMALL_STATE(1783)] = 54528, + [SMALL_STATE(1784)] = 54544, + [SMALL_STATE(1785)] = 54558, + [SMALL_STATE(1786)] = 54574, + [SMALL_STATE(1787)] = 54588, + [SMALL_STATE(1788)] = 54602, + [SMALL_STATE(1789)] = 54618, + [SMALL_STATE(1790)] = 54632, + [SMALL_STATE(1791)] = 54646, + [SMALL_STATE(1792)] = 54662, + [SMALL_STATE(1793)] = 54678, + [SMALL_STATE(1794)] = 54692, + [SMALL_STATE(1795)] = 54708, + [SMALL_STATE(1796)] = 54724, + [SMALL_STATE(1797)] = 54740, + [SMALL_STATE(1798)] = 54756, + [SMALL_STATE(1799)] = 54770, + [SMALL_STATE(1800)] = 54784, + [SMALL_STATE(1801)] = 54800, + [SMALL_STATE(1802)] = 54816, + [SMALL_STATE(1803)] = 54832, + [SMALL_STATE(1804)] = 54848, + [SMALL_STATE(1805)] = 54864, + [SMALL_STATE(1806)] = 54878, + [SMALL_STATE(1807)] = 54892, + [SMALL_STATE(1808)] = 54906, + [SMALL_STATE(1809)] = 54922, + [SMALL_STATE(1810)] = 54938, + [SMALL_STATE(1811)] = 54954, + [SMALL_STATE(1812)] = 54968, + [SMALL_STATE(1813)] = 54984, + [SMALL_STATE(1814)] = 55000, + [SMALL_STATE(1815)] = 55014, + [SMALL_STATE(1816)] = 55030, + [SMALL_STATE(1817)] = 55046, + [SMALL_STATE(1818)] = 55062, + [SMALL_STATE(1819)] = 55078, + [SMALL_STATE(1820)] = 55094, + [SMALL_STATE(1821)] = 55110, + [SMALL_STATE(1822)] = 55126, + [SMALL_STATE(1823)] = 55140, + [SMALL_STATE(1824)] = 55154, + [SMALL_STATE(1825)] = 55168, + [SMALL_STATE(1826)] = 55184, + [SMALL_STATE(1827)] = 55200, + [SMALL_STATE(1828)] = 55214, + [SMALL_STATE(1829)] = 55230, + [SMALL_STATE(1830)] = 55244, + [SMALL_STATE(1831)] = 55260, + [SMALL_STATE(1832)] = 55274, + [SMALL_STATE(1833)] = 55288, + [SMALL_STATE(1834)] = 55302, + [SMALL_STATE(1835)] = 55316, + [SMALL_STATE(1836)] = 55332, + [SMALL_STATE(1837)] = 55348, + [SMALL_STATE(1838)] = 55364, + [SMALL_STATE(1839)] = 55380, + [SMALL_STATE(1840)] = 55394, + [SMALL_STATE(1841)] = 55410, + [SMALL_STATE(1842)] = 55424, + [SMALL_STATE(1843)] = 55440, + [SMALL_STATE(1844)] = 55456, + [SMALL_STATE(1845)] = 55470, + [SMALL_STATE(1846)] = 55486, + [SMALL_STATE(1847)] = 55502, + [SMALL_STATE(1848)] = 55516, + [SMALL_STATE(1849)] = 55532, + [SMALL_STATE(1850)] = 55546, + [SMALL_STATE(1851)] = 55562, + [SMALL_STATE(1852)] = 55576, + [SMALL_STATE(1853)] = 55592, + [SMALL_STATE(1854)] = 55606, + [SMALL_STATE(1855)] = 55620, + [SMALL_STATE(1856)] = 55636, + [SMALL_STATE(1857)] = 55652, + [SMALL_STATE(1858)] = 55668, + [SMALL_STATE(1859)] = 55682, + [SMALL_STATE(1860)] = 55696, + [SMALL_STATE(1861)] = 55710, + [SMALL_STATE(1862)] = 55726, + [SMALL_STATE(1863)] = 55742, + [SMALL_STATE(1864)] = 55758, + [SMALL_STATE(1865)] = 55772, + [SMALL_STATE(1866)] = 55788, + [SMALL_STATE(1867)] = 55802, + [SMALL_STATE(1868)] = 55816, + [SMALL_STATE(1869)] = 55832, + [SMALL_STATE(1870)] = 55848, + [SMALL_STATE(1871)] = 55862, + [SMALL_STATE(1872)] = 55878, + [SMALL_STATE(1873)] = 55894, + [SMALL_STATE(1874)] = 55910, + [SMALL_STATE(1875)] = 55926, + [SMALL_STATE(1876)] = 55940, + [SMALL_STATE(1877)] = 55956, + [SMALL_STATE(1878)] = 55970, + [SMALL_STATE(1879)] = 55986, + [SMALL_STATE(1880)] = 56000, + [SMALL_STATE(1881)] = 56016, + [SMALL_STATE(1882)] = 56030, + [SMALL_STATE(1883)] = 56044, + [SMALL_STATE(1884)] = 56060, + [SMALL_STATE(1885)] = 56074, + [SMALL_STATE(1886)] = 56088, + [SMALL_STATE(1887)] = 56102, + [SMALL_STATE(1888)] = 56116, + [SMALL_STATE(1889)] = 56130, + [SMALL_STATE(1890)] = 56146, + [SMALL_STATE(1891)] = 56160, + [SMALL_STATE(1892)] = 56176, + [SMALL_STATE(1893)] = 56192, + [SMALL_STATE(1894)] = 56208, + [SMALL_STATE(1895)] = 56222, + [SMALL_STATE(1896)] = 56236, + [SMALL_STATE(1897)] = 56252, + [SMALL_STATE(1898)] = 56266, + [SMALL_STATE(1899)] = 56280, + [SMALL_STATE(1900)] = 56294, + [SMALL_STATE(1901)] = 56310, + [SMALL_STATE(1902)] = 56326, + [SMALL_STATE(1903)] = 56340, + [SMALL_STATE(1904)] = 56354, + [SMALL_STATE(1905)] = 56368, + [SMALL_STATE(1906)] = 56382, + [SMALL_STATE(1907)] = 56396, + [SMALL_STATE(1908)] = 56412, + [SMALL_STATE(1909)] = 56428, + [SMALL_STATE(1910)] = 56444, + [SMALL_STATE(1911)] = 56460, + [SMALL_STATE(1912)] = 56474, + [SMALL_STATE(1913)] = 56488, + [SMALL_STATE(1914)] = 56504, + [SMALL_STATE(1915)] = 56520, + [SMALL_STATE(1916)] = 56534, + [SMALL_STATE(1917)] = 56550, + [SMALL_STATE(1918)] = 56563, + [SMALL_STATE(1919)] = 56576, + [SMALL_STATE(1920)] = 56589, + [SMALL_STATE(1921)] = 56602, + [SMALL_STATE(1922)] = 56615, + [SMALL_STATE(1923)] = 56628, + [SMALL_STATE(1924)] = 56641, + [SMALL_STATE(1925)] = 56654, + [SMALL_STATE(1926)] = 56667, + [SMALL_STATE(1927)] = 56680, + [SMALL_STATE(1928)] = 56693, + [SMALL_STATE(1929)] = 56706, + [SMALL_STATE(1930)] = 56719, + [SMALL_STATE(1931)] = 56732, + [SMALL_STATE(1932)] = 56745, + [SMALL_STATE(1933)] = 56758, + [SMALL_STATE(1934)] = 56771, + [SMALL_STATE(1935)] = 56784, + [SMALL_STATE(1936)] = 56797, + [SMALL_STATE(1937)] = 56810, + [SMALL_STATE(1938)] = 56823, + [SMALL_STATE(1939)] = 56836, + [SMALL_STATE(1940)] = 56849, + [SMALL_STATE(1941)] = 56862, + [SMALL_STATE(1942)] = 56875, + [SMALL_STATE(1943)] = 56888, + [SMALL_STATE(1944)] = 56901, + [SMALL_STATE(1945)] = 56914, + [SMALL_STATE(1946)] = 56927, + [SMALL_STATE(1947)] = 56940, + [SMALL_STATE(1948)] = 56953, + [SMALL_STATE(1949)] = 56966, + [SMALL_STATE(1950)] = 56979, + [SMALL_STATE(1951)] = 56992, + [SMALL_STATE(1952)] = 57005, + [SMALL_STATE(1953)] = 57018, + [SMALL_STATE(1954)] = 57031, + [SMALL_STATE(1955)] = 57044, + [SMALL_STATE(1956)] = 57057, + [SMALL_STATE(1957)] = 57070, + [SMALL_STATE(1958)] = 57083, + [SMALL_STATE(1959)] = 57096, + [SMALL_STATE(1960)] = 57109, + [SMALL_STATE(1961)] = 57122, + [SMALL_STATE(1962)] = 57135, + [SMALL_STATE(1963)] = 57148, + [SMALL_STATE(1964)] = 57161, + [SMALL_STATE(1965)] = 57174, + [SMALL_STATE(1966)] = 57187, + [SMALL_STATE(1967)] = 57200, + [SMALL_STATE(1968)] = 57213, + [SMALL_STATE(1969)] = 57226, + [SMALL_STATE(1970)] = 57239, + [SMALL_STATE(1971)] = 57252, + [SMALL_STATE(1972)] = 57265, + [SMALL_STATE(1973)] = 57278, + [SMALL_STATE(1974)] = 57291, + [SMALL_STATE(1975)] = 57304, + [SMALL_STATE(1976)] = 57317, + [SMALL_STATE(1977)] = 57330, + [SMALL_STATE(1978)] = 57343, + [SMALL_STATE(1979)] = 57356, + [SMALL_STATE(1980)] = 57369, + [SMALL_STATE(1981)] = 57382, + [SMALL_STATE(1982)] = 57395, + [SMALL_STATE(1983)] = 57408, + [SMALL_STATE(1984)] = 57421, + [SMALL_STATE(1985)] = 57434, + [SMALL_STATE(1986)] = 57447, + [SMALL_STATE(1987)] = 57460, + [SMALL_STATE(1988)] = 57473, + [SMALL_STATE(1989)] = 57486, + [SMALL_STATE(1990)] = 57499, + [SMALL_STATE(1991)] = 57512, + [SMALL_STATE(1992)] = 57525, + [SMALL_STATE(1993)] = 57538, + [SMALL_STATE(1994)] = 57551, + [SMALL_STATE(1995)] = 57564, + [SMALL_STATE(1996)] = 57577, + [SMALL_STATE(1997)] = 57590, + [SMALL_STATE(1998)] = 57603, + [SMALL_STATE(1999)] = 57616, + [SMALL_STATE(2000)] = 57629, + [SMALL_STATE(2001)] = 57642, + [SMALL_STATE(2002)] = 57655, + [SMALL_STATE(2003)] = 57668, + [SMALL_STATE(2004)] = 57681, + [SMALL_STATE(2005)] = 57694, + [SMALL_STATE(2006)] = 57707, + [SMALL_STATE(2007)] = 57720, + [SMALL_STATE(2008)] = 57733, + [SMALL_STATE(2009)] = 57746, + [SMALL_STATE(2010)] = 57759, + [SMALL_STATE(2011)] = 57772, + [SMALL_STATE(2012)] = 57785, + [SMALL_STATE(2013)] = 57798, + [SMALL_STATE(2014)] = 57811, + [SMALL_STATE(2015)] = 57824, + [SMALL_STATE(2016)] = 57837, + [SMALL_STATE(2017)] = 57850, + [SMALL_STATE(2018)] = 57863, + [SMALL_STATE(2019)] = 57876, + [SMALL_STATE(2020)] = 57889, + [SMALL_STATE(2021)] = 57902, + [SMALL_STATE(2022)] = 57915, + [SMALL_STATE(2023)] = 57928, + [SMALL_STATE(2024)] = 57941, + [SMALL_STATE(2025)] = 57954, + [SMALL_STATE(2026)] = 57967, + [SMALL_STATE(2027)] = 57980, + [SMALL_STATE(2028)] = 57993, + [SMALL_STATE(2029)] = 58006, + [SMALL_STATE(2030)] = 58019, + [SMALL_STATE(2031)] = 58032, + [SMALL_STATE(2032)] = 58045, + [SMALL_STATE(2033)] = 58058, + [SMALL_STATE(2034)] = 58071, + [SMALL_STATE(2035)] = 58084, + [SMALL_STATE(2036)] = 58097, + [SMALL_STATE(2037)] = 58110, + [SMALL_STATE(2038)] = 58123, + [SMALL_STATE(2039)] = 58136, + [SMALL_STATE(2040)] = 58149, + [SMALL_STATE(2041)] = 58162, + [SMALL_STATE(2042)] = 58175, + [SMALL_STATE(2043)] = 58188, + [SMALL_STATE(2044)] = 58201, + [SMALL_STATE(2045)] = 58214, + [SMALL_STATE(2046)] = 58227, + [SMALL_STATE(2047)] = 58240, + [SMALL_STATE(2048)] = 58253, + [SMALL_STATE(2049)] = 58266, + [SMALL_STATE(2050)] = 58279, + [SMALL_STATE(2051)] = 58292, + [SMALL_STATE(2052)] = 58305, + [SMALL_STATE(2053)] = 58318, + [SMALL_STATE(2054)] = 58331, + [SMALL_STATE(2055)] = 58344, + [SMALL_STATE(2056)] = 58357, + [SMALL_STATE(2057)] = 58370, + [SMALL_STATE(2058)] = 58383, + [SMALL_STATE(2059)] = 58396, + [SMALL_STATE(2060)] = 58409, + [SMALL_STATE(2061)] = 58422, + [SMALL_STATE(2062)] = 58435, + [SMALL_STATE(2063)] = 58448, + [SMALL_STATE(2064)] = 58461, + [SMALL_STATE(2065)] = 58474, + [SMALL_STATE(2066)] = 58487, + [SMALL_STATE(2067)] = 58500, + [SMALL_STATE(2068)] = 58513, + [SMALL_STATE(2069)] = 58526, + [SMALL_STATE(2070)] = 58539, + [SMALL_STATE(2071)] = 58552, + [SMALL_STATE(2072)] = 58565, + [SMALL_STATE(2073)] = 58578, + [SMALL_STATE(2074)] = 58591, + [SMALL_STATE(2075)] = 58604, + [SMALL_STATE(2076)] = 58617, + [SMALL_STATE(2077)] = 58630, + [SMALL_STATE(2078)] = 58643, + [SMALL_STATE(2079)] = 58647, }; 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(1209), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [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(31), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [17] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [19] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(678), - [22] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(491), - [25] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(644), - [28] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1421), - [31] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1277), - [34] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1090), - [37] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1160), - [40] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1200), - [43] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1285), - [46] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(25), - [49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1934), - [52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1932), - [55] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1930), - [58] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1062), - [61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1065), - [64] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1572), - [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(103), - [70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1924), - [73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1921), - [76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(172), - [79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1919), - [82] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(845), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1640), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1917), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(168), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(163), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(169), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(335), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1644), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(83), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1915), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1914), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1646), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1648), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1650), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(258), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(256), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(256), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(578), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(251), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(800), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(847), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(845), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1910), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(107), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(697), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(702), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1297), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(92), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(243), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(242), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(241), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(228), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 65), - [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 65), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), - [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 65), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 65), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 2), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1943), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1711), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1950), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1954), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1662), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_colon_block, 1), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1817), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1762), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 2), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 29), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 29), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 10), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 10), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 29), SHIFT(1666), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 29), SHIFT(85), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 10), SHIFT(1666), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 10), SHIFT(85), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 49), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 49), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 49), SHIFT_REPEAT(1666), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 73), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 73), - [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_finally_clause, 2, .production_id = 2), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 2), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 76), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 76), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 51), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 51), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 45), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 45), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 67), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 67), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 6), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 6), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 25), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 25), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 31), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 31), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 51), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 51), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 29), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 29), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8, .production_id = 77), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8, .production_id = 77), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 67), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 67), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 48), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 48), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 10), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 10), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 74), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 74), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 6), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 6), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 47), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 47), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 6), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 6), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 10, .production_id = 77), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 10, .production_id = 77), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 6), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 6), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 25), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 25), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 6), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 6), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 5), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 5), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 74), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 74), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 28), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 28), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 10), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 10), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 45), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 45), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 10), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 10), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 25), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 25), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 27), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 27), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 28), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 28), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 10), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 10), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 31), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 31), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 10), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 10), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 48), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 48), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 2), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 4), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 4), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 15), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 15), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 53), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 53), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 53), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 53), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 14), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 14), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 15), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 15), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 26), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 26), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 68), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 68), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 69), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 69), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 35), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 35), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 35), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 35), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 34), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 34), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 69), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 69), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(336), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(1382), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(1345), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 1), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(1819), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 1), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), - [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 12), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 12), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiation_expression, 3), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiation_expression, 3), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 10), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 10), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 26), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 26), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 56), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 56), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 54), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 54), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 9), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 9), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 36), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 36), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 37), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 37), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 38), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 38), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 43), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 43), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 24), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 24), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1116), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(622), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1566), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1285), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(96), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1888), - [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(110), - [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(636), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1282), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 23), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 23), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 55), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 55), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 70), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 70), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [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(682), + [20] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(452), + [23] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(657), + [26] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1715), + [29] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1360), + [32] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1116), + [35] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1200), + [38] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1239), + [41] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1343), + [44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(27), + [47] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2043), + [50] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2034), + [53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2033), + [56] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1102), + [59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1100), + [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1577), + [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(103), + [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2024), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2021), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(175), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2016), + [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(893), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1776), + [88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2001), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(163), + [94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(173), + [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(172), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(281), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1788), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(88), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1993), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1989), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1791), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1792), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1794), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(286), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(289), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(289), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(592), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(305), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(827), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(892), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(893), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1966), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(107), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(731), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1153), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(719), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1319), + [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(343), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(349), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(351), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(352), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 2), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 2), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 79), + [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 79), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 79), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 79), + [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_statement, 3), + [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_statement, 3), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2067), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1809), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2075), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1922), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1773), + [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 = 1, .reusable = false}}, SHIFT(2067), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [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(591), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 1), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 2), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 2), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1927), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1880), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 10), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 10), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 10), SHIFT(1725), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 10), SHIFT(85), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 33), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 33), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 33), SHIFT(1725), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 33), SHIFT(85), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 2), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 2), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 100), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 100), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 57), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 57), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 57), SHIFT_REPEAT(1725), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 94), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 94), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 40), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 40), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 97), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 97), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 29), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 29), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 85), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 85), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 84), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 84), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 81), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 81), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 6), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 6), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 63), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 63), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 62), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 62), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 53), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 53), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 59), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 59), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 35), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 35), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 5), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 5), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 81), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 81), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 17), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 17), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 84), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 84), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, .production_id = 2), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, .production_id = 2), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 85), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 85), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 4), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 4), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 10), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 10), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 8), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 8), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 2), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 4), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 4), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 10), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 10), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 8, .production_id = 101), + [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 8, .production_id = 101), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 97), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 97), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 56), + [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 56), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_label_statement, 2), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_label_statement, 2), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 4), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 2, .production_id = 4), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 55), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 55), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 10), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 10), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 5), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 5), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 9, .production_id = 95), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 9, .production_id = 95), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 4), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 4), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 5), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 5), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 35), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 35), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 10, .production_id = 101), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 10, .production_id = 101), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7, .production_id = 95), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7, .production_id = 95), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 7), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 7), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_static_declaration, 3), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_static_declaration, 3), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 5), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 5), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 29), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 29), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 6), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 6), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 5), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 5), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 10), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 10), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_echo_statement, 3), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_echo_statement, 3), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 29), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 29), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_statement, 7), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declare_statement, 7), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 6), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 6), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 40), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 40), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 3), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 3), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 6), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 6), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_declaration, 7), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_use_declaration, 7), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 53), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 53), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_statement, 6), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_statement, 6), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 63), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 63), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__const_declaration, 3), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__const_declaration, 3), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 3, .production_id = 10), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 3, .production_id = 10), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 32), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 32), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 1), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 1), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 33), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 33), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 31), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 31), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 32), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 32), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_declaration, 3, .production_id = 6), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_declaration, 3, .production_id = 6), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 6), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 6), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 62), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 62), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 4), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 4), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 59), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 59), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 61), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 5, .production_id = 61), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 5, .production_id = 61), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 5, .production_id = 61), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 16), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_access_expression, 3, .production_id = 16), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 16), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 16), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 15), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_property_access_expression, 3, .production_id = 15), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_variable, 4, .production_id = 30), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dereferencable_expression, 1), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_variable, 4, .production_id = 30), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 3), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 38), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 4, .production_id = 38), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 83), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 6, .production_id = 83), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 6, .production_id = 83), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 6, .production_id = 83), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 82), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_call_expression, 6, .production_id = 82), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 4), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 4), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 3), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 3), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_variable_name, 2), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_variable_name, 2), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_name, 2), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_name, 2), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_call_expression, 4, .production_id = 39), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_call_expression, 4, .production_id = 39), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 39), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullsafe_member_call_expression, 4, .production_id = 39), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(348), + [1456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(1365), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), SHIFT(1402), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 1), + [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2008), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 1), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_modifier, 1), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_scope, 1), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constant_access_expression, 3), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_constant_access_expression, 3), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 13), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 13), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 2), + [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_destructing, 2), REDUCE(sym_array_creation_expression, 2), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__array_destructing, 2), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 2), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 6), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 6), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 2), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 30), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 30), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 86), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 7, .production_id = 86), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 18), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 18), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 26), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 5), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 5), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponentiation_expression, 3), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponentiation_expression, 3), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 9), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 3, .production_id = 9), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 66), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 66), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 65), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 65), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 27), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 27), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_op_expression, 2), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_op_expression, 2), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 64), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 6, .production_id = 64), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clone_expression, 2), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clone_expression, 2), [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 5), [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 5), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 16), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 4, .production_id = 16), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 5, .production_id = 38), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 4), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 24), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 33), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 32), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 32), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 5, .production_id = 46), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 62), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 55), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 12), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 13), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 52), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 52), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 2), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 7, .production_id = 75), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 17), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 42), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 1), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 57), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1067), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1062), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1069), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1065), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 71), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 59), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 63), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 64), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 4), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), - [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_static_modifier, 1), REDUCE(sym__reserved_identifier, 1), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1067), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1123), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1202), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1201), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1062), - [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1069), - [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1065), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 60), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 44), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 61), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 72), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 72), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 4), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 4), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1929), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1699), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1656), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(342), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 2), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 3), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, .production_id = 19), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1, .production_id = 7), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 29), SHIFT(1763), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 29), SHIFT(87), - [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 10), SHIFT(1763), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 10), SHIFT(87), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), - [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1121), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1070), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1072), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(1819), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 18), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(1627), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 1), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1071), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(1889), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 1), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 49), SHIFT_REPEAT(1763), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 8), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 49), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 49), SHIFT_REPEAT(1664), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 49), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), - [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(1889), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(1627), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(1889), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1385), - [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1326), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4, .production_id = 11), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 1), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1, .production_id = 7), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(1231), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 5), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 5, .production_id = 50), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), - [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1111), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 4), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), - [2754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1420), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1416), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1117), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2, .production_id = 7), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 6), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 6, .production_id = 50), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3, .production_id = 11), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [2799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1124), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), - [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1489), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 66), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 21), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 1), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, .production_id = 19), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 22), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1273), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 39), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 66), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), - [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(280), - [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(126), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 10), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 10), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(159), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 30), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(131), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [2992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(910), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 5), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 20), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 27), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 27), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 11), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 30), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(176), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2, .production_id = 11), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(336), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 41), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(974), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(136), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1456), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 40), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 41), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 5), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 58), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 7), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 50), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 4, .production_id = 50), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 3), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(1819), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 2), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3499] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 6), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 6), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 10), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 10), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1165), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(641), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1485), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1343), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(99), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(2005), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(105), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(646), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1296), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 50), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 50), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 43), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 43), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 42), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 42), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 41), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function_creation_expression, 5, .production_id = 41), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 1), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_element_initializer, 1), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 14), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_expression, 2), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_once_expression, 2), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require_expression, 2), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_once_expression, 2), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [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_arrow_function, 5, .production_id = 43), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 5, .production_id = 54), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 7, .production_id = 96), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 36), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 36), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 60), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 60), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 76), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 6, .production_id = 65), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 4), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 27), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 3), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_intrinsic, 2), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_unpacking, 2), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 13), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 37), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_element_initializer, 2), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 1), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_element, 3), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 1), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_initializer, 2), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expressions, 1), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 2), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 2), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 2), SHIFT_REPEAT(1153), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 3, .production_id = 19), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 88), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 4), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 4), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 87), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_list_repeat2, 3), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat2, 3), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 6, .production_id = 98), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_conditional_expression, 3, .production_id = 78), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 5, .production_id = 90), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 72), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 69), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 67), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1104), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1102), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1105), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2), SHIFT_REPEAT(1100), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 1), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 49), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_default_expression, 3, .production_id = 77), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 4), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_pair, 3), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1104), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1168), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1249), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1244), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1102), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1105), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1100), + [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1153), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_modifier, 1), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_static_modifier, 1), REDUCE(sym__reserved_identifier, 1), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 1), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 1), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_use_list_repeat1, 2), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 75), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 1), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 99), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_const_declaration, 2, .production_id = 52), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 93), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 4), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 52), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 92), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 91), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1, .production_id = 28), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 99), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 93), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 51), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 74), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 17), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 73), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 52), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__member_declaration, 1), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 4), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(2053), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1803), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1750), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(365), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 10), SHIFT(1852), + [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 10), SHIFT(84), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 3), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 2), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1, .production_id = 7), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 33), SHIFT(1852), + [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 33), SHIFT(84), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__types, 1), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, .production_id = 21), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1109), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 2), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_name, 1), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 20), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution_qualifier, 1), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1108), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), + [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1383), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2026), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1456), + [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 2), SHIFT(1726), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 1), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 1), SHIFT(2026), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 1), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 3, .production_id = 8), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 1), SHIFT(1726), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 1), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2), SHIFT_REPEAT(1107), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2026), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 1), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1164), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_name_repeat1, 2), SHIFT_REPEAT(2008), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 57), + [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 57), SHIFT_REPEAT(1795), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 2, .production_id = 57), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 57), SHIFT_REPEAT(1852), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 3, .production_id = 11), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 1), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4, .production_id = 11), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_literal, 1), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 2), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1, .production_id = 7), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), + [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__const_declaration_repeat1, 2), SHIFT_REPEAT(1278), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 4), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 5), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 5, .production_id = 58), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(1167), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 1), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), + [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_declaration_repeat1, 2), SHIFT_REPEAT(1157), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat2, 2), SHIFT_REPEAT(1489), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_name_as_prefix, 4), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), + [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_declaration_repeat1, 2), SHIFT_REPEAT(1709), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_clause, 3), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 2), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), + [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_static_declaration_repeat1, 2), SHIFT_REPEAT(1711), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_variable_declaration, 1, .production_id = 1), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 6, .production_id = 58), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_destructing, 6), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2, .production_id = 7), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_clause_repeat1, 2), SHIFT_REPEAT(1163), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 10), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause_2, 3, .production_id = 10), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 48), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_element, 2), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(128), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_condition_list_repeat1, 2), SHIFT_REPEAT(227), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 47), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 6, .production_id = 80), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 3, .production_id = 46), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(834), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), SHIFT_REPEAT(1327), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_namespace_use_group_repeat1, 2), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 4, .production_id = 71), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), SHIFT_REPEAT(1617), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 2), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(127), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 5, .production_id = 44), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 3), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(152), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_aliasing_clause, 2), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2, .production_id = 21), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 5), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_statement_repeat1, 2), SHIFT_REPEAT(916), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 3), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_type, 2, .production_id = 25), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_header, 4, .production_id = 24), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 7, .production_id = 80), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 22), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 1, .production_id = 1), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_parameter, 2, .production_id = 23), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), SHIFT_REPEAT(1155), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(131), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5, .production_id = 34), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2), SHIFT_REPEAT(348), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 5), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 2, .production_id = 11), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface_clause, 2), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2), SHIFT_REPEAT(165), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4, .production_id = 34), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_destructing, 4), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 2, .production_id = 11), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_condition_list, 2), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_clause, 2), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 31), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat2, 1, .production_id = 31), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 12), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_namespace_name, 2), SHIFT(2008), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 4), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 3), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_instead_of_clause, 3), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 7), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 68), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 70), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_use_clause_repeat1, 3), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, .production_id = 71), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 6), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, .production_id = 5), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 4), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_type, 1), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function_use_clause, 5), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 5, .production_id = 89), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group, 4), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_use_group_clause, 3), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 45), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 46), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_destructing_repeat1, 4, .production_id = 58), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_destructing_repeat1, 4, .production_id = 58), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, .production_id = 47), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_directive, 3), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause_2, 2, .production_id = 2), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3731] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 2), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_interpolation, 3), }; #ifdef __cplusplus diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 2ad83fa7..5900a6e8 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -317,3 +317,152 @@ define('ANIMALS', array( ) ) ) + +======================================= +Attributes +======================================= + + "value"))] +#[MyAttribute(100 + 200)] +class Thing +{ +} + + +--- + +(program + (php_tag) + + (function_definition + attributes: (attribute_list (attribute (qualified_name (name)))) + name: (name) + parameters: (formal_parameters + (simple_parameter + attributes: (attribute_list (attribute (qualified_name (name)))) + name: (variable_name (name)) + ) + ) + body: (compound_statement (expression_statement (variable_name (name)))) + ) + + (class_declaration + name: (name) + body: (declaration_list + (const_declaration + attributes: (attribute_list (attribute (qualified_name (name)))) + (const_element (name) (string)) + ) + + (property_declaration + attributes: (attribute_list (attribute (qualified_name (name)))) + (visibility_modifier) + type: (type_list (primitive_type)) + (property_element (variable_name (name)) + (property_initializer (string)) + ) + ) + (method_declaration + attributes: (attribute_list + (attribute + (qualified_name (name)) + parameters: (arguments + (argument (string)) + (argument + (array_creation_expression + (array_element_initializer (string)) + ) + ) + ) + ) + ) + (visibility_modifier) + name: (name) + parameters: (formal_parameters + (simple_parameter + attributes: (attribute_list (attribute (qualified_name (name)))) + name: (variable_name (name)) + ) + ) + body: (compound_statement (comment)) + ) + ) + ) + (class_declaration + attributes: (attribute_list + (attribute (qualified_name (name))) + (attribute + (qualified_name + (namespace_name_as_prefix + (namespace_name (name)) + ) + (name) + ) + ) + (attribute + (qualified_name (name)) + parameters: (arguments (argument (integer))) + ) + (attribute + (qualified_name (name)) + parameters: (arguments + (argument + (class_constant_access_expression + (qualified_name (name)) + (name) + ) + ) + ) + ) + (attribute + (qualified_name (name)) + parameters: (arguments + (argument + (array_creation_expression + (array_element_initializer + (string) + (string) + ) + ) + ) + ) + ) + (attribute + (qualified_name (name)) + parameters: (arguments + (argument + (binary_expression + left: (integer) + right: (integer) + ) + ) + ) + ) + ) + name: (name) + body: (declaration_list) + ) +) \ No newline at end of file diff --git a/test/corpus/interpolation.txt b/test/corpus/interpolation.txt index 4679e6fb..fa01ee38 100644 --- a/test/corpus/interpolation.txt +++ b/test/corpus/interpolation.txt @@ -143,6 +143,36 @@ echo "hi"; (echo_statement (string))) +======================================= +Singel line comment without any content +======================================= + +